00:00
zware has quit [Ping timeout: 240 seconds]
00:03
zware has joined #pypy
00:10
DanC has joined #pypy
00:16
asmeurer_ has joined #pypy
00:17
yuyichao has quit [Ping timeout: 252 seconds]
00:34
yuyichao has joined #pypy
00:36
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
00:37
jcea has quit [Ping timeout: 240 seconds]
00:47
tbodt has joined #pypy
00:55
tbodt has quit [Ping timeout: 240 seconds]
00:57
jcea has joined #pypy
01:20
inhahe_ has quit [Read error: Connection reset by peer]
01:21
inhahe_ has joined #pypy
01:45
jamesaxl has quit [Read error: Connection reset by peer]
01:47
jamesaxl has joined #pypy
01:50
jcea has quit [Ping timeout: 252 seconds]
02:03
pilne has quit [Quit: Quitting!]
02:25
asmeurer_ has quit [Quit: asmeurer_]
02:26
lritter_ has quit [Remote host closed the connection]
02:57
ArneBab_ has joined #pypy
03:01
ArneBab has quit [Ping timeout: 260 seconds]
03:35
asmeurer_ has joined #pypy
03:51
lritter has joined #pypy
03:59
_whitelogger has joined #pypy
04:41
_whitelogger has joined #pypy
05:09
jamadden has quit [Quit: Leaving.]
05:18
inhahe_ has quit [Read error: Connection reset by peer]
05:18
inhahe_ has joined #pypy
05:33
Taggnostr has quit [Ping timeout: 240 seconds]
05:44
kanaka has quit [Ping timeout: 260 seconds]
05:56
kanaka has joined #pypy
06:11
jamadden has joined #pypy
06:11
jamadden has quit [Client Quit]
06:16
arigato has joined #pypy
06:17
jamadden has joined #pypy
06:18
jamadden has quit [Client Quit]
06:41
Taggnostr has joined #pypy
06:48
forgottenone has joined #pypy
07:21
gbutnaru_ has quit [Ping timeout: 252 seconds]
07:23
jamadden has joined #pypy
07:23
jamadden has quit [Client Quit]
07:29
lritter has quit [Read error: Connection reset by peer]
07:35
Taggnostr has quit [Ping timeout: 240 seconds]
07:37
Taggnostr has joined #pypy
07:41
gbutnaru has joined #pypy
07:43
Taggnostr has quit [Ping timeout: 240 seconds]
07:46
Taggnostr has joined #pypy
08:04
Taggnostr has quit [Ping timeout: 245 seconds]
08:06
Taggnostr has joined #pypy
08:14
girish946 has joined #pypy
08:14
girish946 has quit [Max SendQ exceeded]
08:14
asmeurer_ has quit [Quit: asmeurer_]
08:15
girish946 has joined #pypy
08:16
girish946 has quit [Max SendQ exceeded]
08:16
gbutnaru has quit [Ping timeout: 240 seconds]
08:16
girish946 has joined #pypy
08:17
girish946 has quit [Max SendQ exceeded]
08:18
girish946 has joined #pypy
08:28
antocuni has joined #pypy
08:28
jamadden has joined #pypy
08:28
jamadden has quit [Client Quit]
08:28
gbutnaru has joined #pypy
08:30
Taggnostr has quit [Read error: Connection reset by peer]
08:33
Taggnostr has joined #pypy
08:37
marr has joined #pypy
08:44
jacob22_ has joined #pypy
08:52
cstratak has joined #pypy
08:57
cstratak has quit [Client Quit]
08:57
cstratak has joined #pypy
09:04
amaury has joined #pypy
09:09
amaury has quit [Ping timeout: 260 seconds]
09:09
cstratak has quit [Quit: Leaving]
09:11
cstratak has joined #pypy
09:13
amaury has joined #pypy
09:25
jamesaxl has quit [Read error: Connection reset by peer]
09:27
jamesaxl has joined #pypy
09:33
amaury has quit [Quit: Konversation terminated!]
09:33
amaury has joined #pypy
09:34
jamadden has joined #pypy
09:35
jamadden has quit [Client Quit]
09:35
oberstet2 has quit [Ping timeout: 258 seconds]
09:39
amaury has quit [Quit: Konversation terminated!]
09:39
amaury has joined #pypy
09:45
amaury has quit [Quit: Konversation terminated!]
09:45
amaury has joined #pypy
09:53
amaury has quit [Ping timeout: 258 seconds]
09:53
oberstet2 has joined #pypy
09:55
cstratak has quit [Quit: Leaving]
09:58
girish946 has quit [Quit: Leaving]
09:59
cstratak has joined #pypy
10:06
arigato has quit [Read error: Connection reset by peer]
10:14
antocuni has quit [Ping timeout: 245 seconds]
10:14
Taggnostr has quit [Quit: No Ping reply in 180 seconds.]
10:16
jamadden has joined #pypy
10:18
Taggnostr has joined #pypy
10:50
Taggnostr has quit [Ping timeout: 255 seconds]
10:53
Taggnostr has joined #pypy
10:54
<
kenaan >
arigo pypy.org[extradoc] 9f402b101c68 /don1.html: update the values
10:56
DanC has quit [Ping timeout: 268 seconds]
11:02
kirma has quit [Ping timeout: 258 seconds]
11:02
kirma has joined #pypy
11:04
ssbr has quit [Remote host closed the connection]
11:11
Tiberium has joined #pypy
11:11
Tiberium has quit [Max SendQ exceeded]
11:11
Tiberium has joined #pypy
11:36
Taggnostr has quit [Quit: No Ping reply in 180 seconds.]
11:37
arigato has joined #pypy
11:38
<
arigato >
mattip (logs): I can explain why ab207c2b540b is wrong (but maybe something is wrong in default too)
11:40
Taggnostr has joined #pypy
11:41
<
arigato >
PyList_SetItem(x, i, y) in CPython does neither incref nor decref 'y', so basically it steals one reference to 'y'. With ab207c2b540b you're removing that, so any CPython C extension module using PyList_SetItem will now leak 'y'
11:42
jcea has joined #pypy
11:44
<
arigato >
I can't really do anything more because I can't find any test failure in 95c7e6ee21b6, at least in cpyext/test/test_listobject.py
11:45
mihaid has joined #pypy
11:49
<
arigato >
I would guess that in one situation in one CPython C extension module, it decrefs an object with refcount == REFCNT_FROM_PYPY exactly
11:49
<
arigato >
but we need to understand why that CPython C extension module does it
11:51
<
arigato >
doing it would look similar to a C function that receives a "PyObject *x" as argument, and calls Py_DECREF(x)
11:51
<
arigato >
I'm unsure what to do in that case, but it looks bogus
11:53
<
arigato >
ah no, in this case, we might do something
11:53
<
arigato >
we should force the list to the CPyListStrategy, and then we can store the "PyObject *" directly
11:53
<
arigato >
the CPyListStrategy is already used if you call PyList_GetItem()
11:55
antocuni has joined #pypy
12:33
arigato has quit [Ping timeout: 260 seconds]
12:37
cstratak has quit [Quit: Leaving]
12:38
mattip_ has joined #pypy
12:39
<
mattip_ >
arigato: (for the logs) I refactored PyList_GetItem and friends in 8a55a93fe3df to be more like cpython,
12:39
<
mattip_ >
and even expanded a test to make sure we do what cpython does
12:43
<
mattip_ >
it seems pandas' tests do not segfault, but leak so that slowly I run out of memory
12:43
cstratak has joined #pypy
12:43
<
mattip_ >
I suspect another
__releasebuffer__ from cython, still trying to verify
12:44
<
mattip_ >
that the PyBuffer tp_dealloc is being called
12:44
mattip_ has quit [Quit: Page closed]
13:01
kolko has quit [Ping timeout: 260 seconds]
13:01
kolko_ has joined #pypy
13:12
realitix has joined #pypy
13:22
marky1991 has joined #pypy
13:31
cstratak has quit [Quit: Leaving]
13:33
cstratak has joined #pypy
13:55
oberstet3 has joined #pypy
13:56
arigato has joined #pypy
13:57
oberstet2 has quit [Ping timeout: 240 seconds]
14:09
girish946 has joined #pypy
14:14
Taggnostr has quit [Ping timeout: 260 seconds]
14:15
oberstet3 has quit [Ping timeout: 260 seconds]
14:16
arigato has quit [Read error: Connection reset by peer]
14:16
Taggnostr has joined #pypy
14:21
arigato has joined #pypy
14:25
<
kenaan >
rlamy default 55f162358a12 /pypy/doc/whatsnew-head.rst: document merged branch
14:27
nunatak has joined #pypy
14:39
adamholmberg has joined #pypy
14:40
oberstet3 has joined #pypy
14:56
tifo has joined #pypy
14:59
rmesta has joined #pypy
15:02
kanaka has quit [Changing host]
15:02
kanaka has joined #pypy
15:07
girish946 has quit [Quit: Leaving]
15:14
tifo has quit [Ping timeout: 258 seconds]
15:28
cstratak has quit [Quit: Leaving]
15:28
yuyichao has quit [Ping timeout: 240 seconds]
15:29
cstratak has joined #pypy
15:33
tifo has joined #pypy
15:36
arigato has quit [Quit: Leaving]
15:46
yuyichao has joined #pypy
15:53
Tiberium has quit [Read error: Connection reset by peer]
15:54
Tiberium has joined #pypy
15:56
tifo has quit [Ping timeout: 240 seconds]
16:03
<
kenaan >
rlamy py3.5 f57c8f393890 /: hg merge default
16:03
jamesaxl has quit [Read error: Connection reset by peer]
16:04
<
kenaan >
rlamy PyBuffer 31b70719e9ba /: hg merge py3.5
16:05
jamesaxl has joined #pypy
16:21
jacob22_ has quit [Ping timeout: 245 seconds]
16:21
jacob22 has joined #pypy
16:32
realitix has quit [Ping timeout: 252 seconds]
16:41
cstratak has quit [Quit: Leaving]
16:51
DanC has joined #pypy
17:00
asmeurer_ has joined #pypy
17:02
asmeurer_ has quit [Client Quit]
17:05
pilne has joined #pypy
17:10
adamholmberg has quit [Remote host closed the connection]
17:11
adamholmberg has joined #pypy
17:15
adamholmberg has quit [Ping timeout: 240 seconds]
17:24
<
kenaan >
rlamy PyBuffer b3701341d1aa /pypy/module/: fixes
17:24
<
kenaan >
rlamy PyBuffer 0db5e3751f7b /: Merge RawBuffer and ByteBuffer
17:25
marr has quit [Ping timeout: 240 seconds]
17:41
dmalcolm has quit [Ping timeout: 268 seconds]
17:54
dmalcolm has joined #pypy
18:26
antocuni has quit [Ping timeout: 240 seconds]
18:33
marky1991_2 has joined #pypy
18:34
john51_ has quit [Write error: Broken pipe]
18:34
john51 has joined #pypy
18:38
tazle__ has joined #pypy
18:38
froztbyt1 has joined #pypy
18:38
froztbyte has quit [Write error: Broken pipe]
18:38
tazle has quit [Write error: Broken pipe]
18:38
marky1991 has quit [Remote host closed the connection]
18:38
irclogs_io_bot has quit [Remote host closed the connection]
18:40
irclogs_io_bot has joined #pypy
18:42
antocuni has joined #pypy
18:50
rmesta has quit [Quit: Leaving.]
19:06
antocuni has quit [Ping timeout: 240 seconds]
19:06
rmesta has joined #pypy
19:12
rmesta1 has joined #pypy
19:13
rmesta has quit [Ping timeout: 260 seconds]
19:28
froztbyt1 is now known as froztbyte
19:29
rmesta1 has quit [Quit: Leaving.]
19:30
rmesta has joined #pypy
19:33
mattip has joined #pypy
19:33
rmesta has quit [Client Quit]
19:38
rmesta has joined #pypy
19:42
rmesta has quit [Client Quit]
19:47
tbodt has joined #pypy
19:59
tav` has quit [Quit: tav`]
20:06
Tiberium has quit [Remote host closed the connection]
20:16
Rhy0lite has joined #pypy
20:18
marr has joined #pypy
20:30
rmesta has joined #pypy
20:30
rmesta has quit [Client Quit]
20:31
rmesta has joined #pypy
20:44
<
kenaan >
arigo pypy.org[extradoc] 3c445eee1b27 /don1.html: update the values
20:48
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
20:51
Taggnostr has quit [Remote host closed the connection]
20:54
Taggnostr has joined #pypy
20:58
antocuni has joined #pypy
20:58
nunatak has quit [Quit: Leaving]
21:13
tbodt has joined #pypy
21:16
nimaje1 has joined #pypy
21:16
nimaje is now known as Guest26907
21:16
nimaje1 is now known as nimaje
21:18
Rhy0lite has quit [Quit: Leaving]
21:22
mattip has left #pypy ["bye"]
21:38
forgottenone has quit [Quit: Konversation terminated!]
21:47
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
21:49
tbodt has joined #pypy
21:49
tbodt has quit [Client Quit]
22:02
jamesaxl has quit [Read error: Connection reset by peer]
22:03
jamesaxl has joined #pypy
22:12
kbtr has quit [Ping timeout: 240 seconds]
22:12
kenny has quit [Ping timeout: 246 seconds]
22:12
gutworth has quit [Ping timeout: 240 seconds]
22:13
domenkozar has quit [Ping timeout: 246 seconds]
22:14
kbtr has joined #pypy
22:14
mvantellingen has quit [Ping timeout: 240 seconds]
22:14
mvantellingen has joined #pypy
22:17
mwhudson has quit [Remote host closed the connection]
22:17
Niedar has quit [Ping timeout: 240 seconds]
22:17
samth has quit [Ping timeout: 240 seconds]
22:17
nopf has quit [Ping timeout: 240 seconds]
22:18
altendky has quit [Ping timeout: 240 seconds]
22:18
mvantellingen has quit [Ping timeout: 240 seconds]
22:18
nopf has joined #pypy
22:18
kenny has joined #pypy
22:18
mwhudson has joined #pypy
22:18
mwhudson has joined #pypy
22:18
mwhudson has quit [Changing host]
22:18
domenkozar has joined #pypy
22:18
kenny is now known as Guest92804
22:19
glyph has quit [Ping timeout: 240 seconds]
22:19
Niedar has joined #pypy
22:19
gutworth has joined #pypy
22:20
glyph has joined #pypy
22:21
infernix has quit [Excess Flood]
22:21
mvantellingen has joined #pypy
22:22
altendky has joined #pypy
22:33
samth has joined #pypy
22:37
infernix has joined #pypy
22:39
tbodt has joined #pypy
22:39
marky1991_2 is now known as marky1991
22:39
marky1991 has quit [Changing host]
22:39
marky1991 has joined #pypy
22:52
tifo has joined #pypy
22:57
tbodt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
23:03
mf_ has quit [Ping timeout: 246 seconds]
23:04
mf_ has joined #pypy
23:05
mf_ is now known as Guest30089
23:21
tifo has quit [Ping timeout: 260 seconds]
23:25
asmeurer_ has joined #pypy
23:27
tbodt has joined #pypy
23:29
tbodt has quit [Client Quit]
23:41
tbodt has joined #pypy
23:46
tav has joined #pypy
23:52
Ubuntu-BR has joined #pypy
23:56
lritter has joined #pypy