<mithro>
BTW - Incase not everyone has seen it, I wrote a tool to try and make vhdl + verilog formatting nicer in the similar vain to clang-format or go-format - https://github.com/mithro/hdl-pretty (It wraps emacs's vhdl/verilog modes)
<mithro>
It's not great, but it's better than nothing, which seems to be where things are at the moment
<key2>
sb0: in what case do you use iverilog vs verilator ?
<sb0>
key2, please search the source to find out.
<cr1901_modern>
Who wants to write a Python verilog compiler :P?
<whitequark>
use yosys
<sb0>
I wonder what part of the yosys development time was spent implementing stupid verilog idiosyncrasies, and what part of those idiosyncrasies is implemented correctly
<whitequark>
this is basically the same as my uber-expensive sealed swagelok needle valve (used: $80), except it's $20 new, and it's actuated electronically
<whitequark>
you can use it to add precise amounts of gases to the chamber
<whitequark>
not stainless, so less chemically resistant. mainly you can't use ammonia with it
<whitequark>
but still, very interesting
fengling has joined #m-labs
imrehg has joined #m-labs
_florent_ has quit [Ping timeout: 258 seconds]
_florent_ has joined #m-labs
fengling has quit [Ping timeout: 272 seconds]
imrehg has quit [Quit: Leaving]
fengling has joined #m-labs
fengling has quit [Client Quit]
ohama has quit [Disconnected by services]
ohama has joined #m-labs
lrak has joined #m-labs
_florent_ has quit [Ping timeout: 272 seconds]
antgreen has joined #m-labs
antgreen has quit [Remote host closed the connection]
antgreen has joined #m-labs
antgreen has quit [Remote host closed the connection]
<rjo>
ysionneau: i think the asyncio unittest pattern of explicitly creating and destroying the loop on setUp/tearDown is the correct one.
<ysionneau>
rjo: ok!
<ysionneau>
in asyncio's unittests, they seem to have no rule about that, sometimes they create the loop in setUp, but then they close it at the end of the test (no tearDown), or sometimes they don't even close it
<ysionneau>
or sometimes they create the loop at the beginning of the test