cfbolz changed the topic of #pypy to: #pypy PyPy, the flexible snake https://pypy.org | IRC logs: https://quodlibet.duckdns.org/irc/pypy/latest.log.html#irc-end and https://libera.irclog.whitequark.org/pypy | the pypy angle is to shrug and copy the implementation of CPython as closely as possible, and staying out of design decisions
_whitelogger has joined #pypy
jcea has joined #pypy
jcea has quit [Ping timeout: 248 seconds]
_whitelogger has joined #pypy
nightstrike has quit [Ping timeout: 245 seconds]
nightstrike has joined #pypy
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.