2018-02-26 15:52
cfbolz changed the topic of #pypy to: PyPy, the flexible snake (IRC logs:
https://botbot.me/freenode/pypy/ ) | use cffi for calling C | the secret reason for us trying to get PyPy users: to test the JIT well enough that we're somewhat confident about it
00:02
wfranken has joined #pypy
00:03
wfranken has quit [Remote host closed the connection]
00:12
ciphergoth has joined #pypy
00:21
PolarizedIons16 has joined #pypy
00:26
PolarizedIons16 has quit [Remote host closed the connection]
00:30
nimaje has quit [Ping timeout: 252 seconds]
00:30
nimaje has joined #pypy
00:44
Guest1934 has joined #pypy
00:47
Guest1934 has quit [Remote host closed the connection]
00:49
nimaje has quit [Ping timeout: 250 seconds]
00:50
nimaje has joined #pypy
00:52
nimaje has quit [Excess Flood]
00:53
nimaje has joined #pypy
00:58
Immune has joined #pypy
00:59
Immune has quit [Remote host closed the connection]
01:09
alexband has joined #pypy
01:16
riddle has quit [Ping timeout: 272 seconds]
01:17
nimaje has quit [Ping timeout: 250 seconds]
01:18
nimaje has joined #pypy
01:18
riddle has joined #pypy
01:19
em has joined #pypy
01:20
nimaje has quit [Excess Flood]
01:21
em has quit [Remote host closed the connection]
01:25
nimaje has joined #pypy
01:35
dddddd has quit [Remote host closed the connection]
01:38
ciphergoth has quit [Remote host closed the connection]
01:46
nimaje has quit [Ping timeout: 252 seconds]
01:47
nimaje has joined #pypy
01:48
nimaje has quit [Read error: Connection reset by peer]
01:49
nimaje has joined #pypy
02:07
rikai has joined #pypy
02:07
rikai has quit [Remote host closed the connection]
02:10
Hoosilon4 has joined #pypy
02:10
lritter has quit [Ping timeout: 245 seconds]
02:12
Hoosilon4 has quit [Remote host closed the connection]
02:20
lagbox8 has joined #pypy
02:25
lagbox8 has quit [Ping timeout: 252 seconds]
02:28
nimaje has quit [Remote host closed the connection]
02:28
nimaje has joined #pypy
02:32
nimaje1 has joined #pypy
02:32
nimaje is now known as Guest68963
02:32
nimaje1 is now known as nimaje
02:33
Guest68963 has quit [Ping timeout: 240 seconds]
02:35
nimaje has quit [Excess Flood]
02:37
jcea has quit [Quit: jcea]
02:40
nimaje has joined #pypy
02:43
nimaje is now known as Guest26441
02:43
Guest26441 has quit [Killed (rajaniemi.freenode.net (Nickname regained by services))]
02:43
nimaje has joined #pypy
02:48
barq6 has joined #pypy
02:51
barq6 has quit [Remote host closed the connection]
03:31
Graypup_ has joined #pypy
03:33
glyph has quit [Ping timeout: 268 seconds]
03:33
eir27 has joined #pypy
03:35
eir27 has quit [Remote host closed the connection]
03:45
glyph has joined #pypy
03:57
forgottenone has joined #pypy
04:58
kanaka has quit [Read error: Connection reset by peer]
05:00
kanaka has joined #pypy
05:35
node9 has joined #pypy
05:38
node9 has quit [Remote host closed the connection]
06:28
jamesaxl has quit [Ping timeout: 240 seconds]
06:35
Zanzibar5 has joined #pypy
06:35
mattip has quit [Ping timeout: 246 seconds]
06:36
Zanzibar5 has quit [Remote host closed the connection]
06:39
arigato has joined #pypy
06:43
tayfun26 has joined #pypy
07:05
PrettyKittie5 has joined #pypy
07:07
mattip has joined #pypy
07:08
<
kenaan >
mattip unicode-utf8-py3 c07dc57b964d /pypy/module/: revert 6105ef49d9ca, try to catch error
07:08
<
kenaan >
mattip py3.5 f7324252bc6b /: merge default into branch
07:08
<
kenaan >
mattip unicode-utf8-py3 e94950decff4 /: merge py3.5 into branch
07:10
PrettyKittie5 has quit [Remote host closed the connection]
07:26
ronan has joined #pypy
07:27
<
kenaan >
arigo default 7756ae58c273 /: Issue #2879 another ctypes fix
07:30
jamesaxl has joined #pypy
07:41
Shrooms2 has joined #pypy
07:41
Shrooms2 has quit [Remote host closed the connection]
07:50
ronan has quit [Quit: Ex-Chat]
07:50
ronan has joined #pypy
07:51
jamesaxl has quit [Read error: Connection reset by peer]
07:52
jamesaxl has joined #pypy
08:07
Khayman has joined #pypy
08:07
TheAdversary has quit [Ping timeout: 252 seconds]
08:07
Hasimir has quit [Ping timeout: 252 seconds]
08:08
TheAdversary has joined #pypy
08:08
Khayman is now known as Hasimir
08:11
<
kenaan >
rlamy py3.5 0fa29dbd5314 /pypy/module/imp/test/test_import.py: rm py2-specific test
08:14
ikevin7 has joined #pypy
08:14
ikevin7 has quit [Remote host closed the connection]
08:31
<
mattip >
arigato: thanks for looking at the translation failure. It does happen only rarely. I will try to reproduce and give you access
08:34
<
mattip >
arigato: any idea about the own test failure (I also copy-pasted the link a few hours ago here ^^^)
08:37
ronan has quit [Ping timeout: 246 seconds]
08:40
<
arigato >
probably somebody instantiating directly objspace.unicodeobject.W_Unicode
08:40
<
arigato >
this class should never show up in ztranslation tests
08:41
<
arigato >
or more likely, somebody
*using* W_Unicode but not actually instantiating it
08:42
<
arigato >
e.g. the two places in baseobjspace.py that do from pypy.objspace.std.unicodeobject import W_UnicodeObject
08:42
<
arigato >
are at best shaky and likely to cause this problem
08:43
<
arigato >
ok, you need to add ``assert not hasattr(self, 'is_fake_objspace')`` to baseobjspace.py
08:44
<
arigato >
that's why it was there in the first place in convert_arg_to_w_unicode()
08:44
<
arigato >
so you need to add it to realutf8_w() too
08:46
<
arigato >
or maybe ``if hasattr(self, 'is_fake_objspace'): return "foobar"``
08:46
<
arigato >
so that it doesn't translate as an assertion failure but still goes through and realutf8_w() is annotated as returning a string
08:47
<
arigato >
do that
*before* isinstance(W_UnicodeObject)
09:07
Sigyn has quit [Read error: Connection reset by peer]
09:07
zaberdampfer has joined #pypy
09:07
arigato has quit [Ping timeout: 240 seconds]
09:08
Sigyn has joined #pypy
09:08
zaberdampfer has quit [Remote host closed the connection]
09:36
lucy_ has joined #pypy
09:41
lucy_ has quit [Remote host closed the connection]
09:53
nimaje has quit [Ping timeout: 260 seconds]
10:06
alexband has quit [Ping timeout: 252 seconds]
10:17
lesshaste has joined #pypy
10:20
nimaje has joined #pypy
10:20
dddddd has joined #pypy
10:23
TheAdversary has quit [Read error: Connection reset by peer]
10:24
Hasimir has quit [Read error: Connection reset by peer]
10:26
Hasimir has joined #pypy
10:27
TheAdversary has joined #pypy
10:38
shentino7 has joined #pypy
10:43
shentino7 has quit [Remote host closed the connection]
10:52
bendlas[m] has quit [Write error: Connection reset by peer]
11:02
bendlas[m] has joined #pypy
11:07
marky1991 has joined #pypy
11:07
oberstet has joined #pypy
11:09
Rhy0lite has joined #pypy
11:19
mattip has quit [Ping timeout: 245 seconds]
11:21
jcea has joined #pypy
12:03
ronan has joined #pypy
12:14
lritter has joined #pypy
12:23
mattip has joined #pypy
12:25
ronan has quit [Quit: Ex-Chat]
12:25
ronan has joined #pypy
12:32
ronan has quit [Quit: Ex-Chat]
12:32
ronan has joined #pypy
12:49
bendlas[m] has quit [Remote host closed the connection]
12:58
adamholmberg has joined #pypy
13:01
bendlas[m] has joined #pypy
13:03
<
kenaan >
rlamy py3.6 103458c3eab6 /: hg merge py3.5
13:07
forgottenone has quit [Quit: Konversation terminated!]
13:21
ronan has quit [Ping timeout: 246 seconds]
13:26
forgottenone has joined #pypy
13:53
dash_ has joined #pypy
13:53
dash_ is now known as mdash
14:02
adamholmberg has quit [Remote host closed the connection]
14:03
adamholmberg has joined #pypy
14:08
adamholmberg has quit [Ping timeout: 272 seconds]
14:10
Awesomecase has joined #pypy
14:12
ronan has joined #pypy
14:12
Awesomecase has quit [Remote host closed the connection]
14:15
adamholmberg has joined #pypy
14:35
jcea has quit [Quit: jcea]
14:38
jcea has joined #pypy
14:53
adamholmberg has quit []
14:54
marky1991 has quit [Read error: Connection reset by peer]
14:55
marky1991 has joined #pypy
15:28
tayfun26 has quit [Quit: tayfun26]
15:41
ronan has quit [Ping timeout: 246 seconds]
15:44
mattip has quit [Ping timeout: 244 seconds]
16:13
nimaje has quit [Ping timeout: 260 seconds]
16:15
nimaje has joined #pypy
16:22
marky1991 has quit [Remote host closed the connection]
16:23
marky1991 has joined #pypy
16:23
nimaje has quit [Ping timeout: 240 seconds]
16:25
nimaje has joined #pypy
16:25
nimaje has quit [Excess Flood]
16:26
forgottenone has quit [Ping timeout: 244 seconds]
16:26
nimaje has joined #pypy
16:32
nimaje has quit [Ping timeout: 240 seconds]
16:33
nimaje has joined #pypy
16:45
marky1991 has quit [Read error: Connection reset by peer]
16:45
marky1991 has joined #pypy
16:55
mattip has joined #pypy
16:55
nimaje has quit [Ping timeout: 252 seconds]
16:59
nimaje has joined #pypy
17:13
gsnedders has quit [Quit: leaving]
17:14
gsnedders has joined #pypy
17:26
oberstet has quit [Ping timeout: 252 seconds]
17:26
nimaje has quit [Ping timeout: 244 seconds]
17:27
kanaka has quit [Changing host]
17:27
kanaka has joined #pypy
17:31
mattip has quit [Ping timeout: 244 seconds]
17:31
jamesaxl has quit [Quit: WeeChat 2.2]
17:33
Rhy0lite has quit [Quit: Leaving]
17:36
nimaje has joined #pypy
17:39
nimaje has quit [Killed (kornbluth.freenode.net (Nickname regained by services))]
17:39
nimaje has joined #pypy
17:49
DIRT has joined #pypy
17:53
forgottenone has joined #pypy
17:53
crayfishx16 has joined #pypy
17:57
nimaje has quit [Read error: Connection reset by peer]
17:58
nimaje has joined #pypy
17:58
crayfishx16 has quit [Remote host closed the connection]
18:03
marcoslater1 has joined #pypy
18:06
marcoslater1 has quit [Remote host closed the connection]
18:07
Gonsor has joined #pypy
18:14
mvantellingen has quit [Ping timeout: 252 seconds]
18:16
mvantellingen has joined #pypy
18:34
realitix has joined #pypy
18:35
realitix has quit [Remote host closed the connection]
18:37
DIRT has quit [Quit: Leaving]
18:50
nimaje is now known as Guest2782
18:50
Guest2782 has quit [Killed (rajaniemi.freenode.net (Nickname regained by services))]
18:50
nimaje has joined #pypy
18:53
nimaje has quit [Excess Flood]
18:57
nimaje has joined #pypy
19:18
oberstet has joined #pypy
19:22
nimaje has quit [Ping timeout: 240 seconds]
19:32
nimaje has joined #pypy
19:35
forgottenone has quit [Ping timeout: 245 seconds]
19:39
nimaje has quit [Ping timeout: 240 seconds]
19:39
nimaje has joined #pypy
19:41
jcea1 has joined #pypy
19:41
jcea has quit [Read error: Connection reset by peer]
19:41
jcea1 is now known as jcea
19:44
nimaje has quit [Ping timeout: 252 seconds]
19:48
mattip has joined #pypy
19:57
TheAdversary has quit [Ping timeout: 252 seconds]
19:58
Hasimir has quit [Ping timeout: 245 seconds]
20:07
nimaje has joined #pypy
20:20
tbodt has joined #pypy
20:21
oberstet has quit [Ping timeout: 240 seconds]
20:28
tbodt has joined #pypy
20:34
tbodt has joined #pypy
20:37
niceplace has joined #pypy
20:49
Edane1 has joined #pypy
20:52
Edane1 has quit [Remote host closed the connection]
20:53
nimaje has quit [Ping timeout: 240 seconds]
20:54
nimaje has joined #pypy
20:55
nimaje has quit [Excess Flood]
21:01
nimaje has joined #pypy
21:17
Gonsor has quit [Ping timeout: 240 seconds]
21:27
nimaje has quit [Killed (kornbluth.freenode.net (Nickname regained by services))]
21:27
nimaje has joined #pypy
21:39
nimaje has quit [Ping timeout: 240 seconds]
21:43
ktechmidas17 has joined #pypy
21:43
nimaje has joined #pypy
21:48
ktechmidas17 has quit [Remote host closed the connection]
22:01
nimaje has quit [Ping timeout: 245 seconds]
22:01
nimaje has joined #pypy
22:12
nimaje has quit [Read error: Connection reset by peer]
22:13
nimaje has joined #pypy
22:25
nimaje has quit [Ping timeout: 252 seconds]
22:27
Garen_ has joined #pypy
22:29
Garen has quit [Ping timeout: 246 seconds]
22:29
nimaje has joined #pypy
22:35
nimaje has quit [Ping timeout: 250 seconds]
22:37
nimaje has joined #pypy
22:56
nimaje has quit [Ping timeout: 252 seconds]
23:13
marky1991 has quit [Ping timeout: 240 seconds]