dbohdan[phone] has quit [Ping timeout: 265 seconds]
dbohdan[phone] has joined #pypy
dmalcolm has quit [Ping timeout: 276 seconds]
BarrensZeppelin has joined #pypy
BarrensZeppelin has quit [Ping timeout: 265 seconds]
BarrensZeppelin has joined #pypy
dmalcolm has joined #pypy
_whitelogger has joined #pypy
BarrensZeppelin has quit [Quit: BarrensZeppelin]
[Arfrever] has quit [Ping timeout: 240 seconds]
[Arfrever] has joined #pypy
<arigato>
korvo: note that functions with *args are always specialized on the length of args, I think
<arigato>
I thought it would work out of the box to have "class X: def __init__(self, *args): self.lst = list(args)
<arigato>
ah, maybe that specialization doesn't work when you call X(...). In that case, the simplest is to make the class __init__-less and have another method like "def initialize(self, *args)"
<mgorny>
https://github.com/vutran1710/PyrateLimiter/issues/204 i'd apprecaite if someone could take a look. i think i've seen similar sqlite3 errors in other python packages but i can't see anything obviously wrong here
<mgorny>
sorry for the trouble, figured it out
<mgorny>
it always is some unclosed object...
<korvo>
arigato: Oh, clever. And I could even use classmethods. Thanks.