habnabit_ has quit [Read error: Connection reset by peer]
habnabit_ has joined #pypy
habnabit_ has quit [Client Quit]
habnabit_ has joined #pypy
habnabit_ has quit [Remote host closed the connection]
habnabit_ has joined #pypy
habnabit_ has quit [Read error: Connection reset by peer]
habnabit_ has joined #pypy
glyph has quit [Ping timeout: 268 seconds]
glyph has joined #pypy
BarrensZeppelin has joined #pypy
BarrensZeppelin has quit [Client Quit]
xorAxAx has quit [Ping timeout: 245 seconds]
xorAxAx has joined #pypy
jerith has quit [Ping timeout: 245 seconds]
jerith has joined #pypy
ruth2345345 is now known as ruthenium
pjenvey has quit [Read error: Connection reset by peer]
pjenvey has joined #pypy
krono has quit [Read error: Connection reset by peer]
krono has joined #pypy
BarrensZeppelin has joined #pypy
slav0nic has joined #pypy
jcea has joined #pypy
BarrensZeppelin has quit [Quit: BarrensZeppelin]
jcea has quit [Ping timeout: 248 seconds]
slav0nic has quit [Ping timeout: 260 seconds]
<korvo>
Oh cool, TIL that heterogenous isinstance() works inside an @specialize.call_location'd function. That makes life a little easier for systems that can have tuples or single non-tuple items.
<korvo>
As in: if isinstance(x, int): ...; elif len(x) == 2: ...