00:01 eater joined 00:12 eater left 01:48 frost-lab joined 02:18 leont left 05:26 evalable6 left, committable6 left, linkable6 left, greppable6 left, coverable6 left, shareable6 left, statisfiable6 left, unicodable6 left, squashable6 left, bloatable6 left, quotable6 left, bisectable6 left, benchable6 left, sourceable6 left, notable6 left, nativecallable6 left, releasable6 left, tellable6 left, unicodable6 joined, bloatable6 joined 05:27 linkable6 joined, squashable6 joined, nativecallable6 joined, evalable6 joined, greppable6 joined 05:28 quotable6 joined, tellable6 joined, statisfiable6 joined, coverable6 joined 05:29 sourceable6 joined, releasable6 joined, shareable6 joined, bisectable6 joined, benchable6 joined, committable6 joined, notable6 joined 08:17 sena_kun joined 08:20 eater joined 08:36 maggotbrain joined 09:40 MasterDuke joined
lizmat Files=1337, Tests=114219, 225 wallclock secs (29.65 usr 8.57 sys + 3113.75 cusr 296.37 csys = 3448.34 CPU) 09:42
bisectable6: old=2020.04 slurp("foo".IO) 09:47
bisectable6 lizmat, Cannot find revision “2020.04” (did you mean “2020.10”?)
lizmat bisectable6: old=2020.03 slurp("foo".IO)
bisectable6 lizmat, Cannot find revision “2020.03” (did you mean “2020.10”?)
lizmat bisectable6: old=2020.05.1 slurp("foo".IO)
bisectable6 lizmat, On both starting points (old=2020.05.1 new=2436532) the exit code is 1 and the output is identical as well
lizmat, Output on both points: «Failed to open file /home/bisectable/git/whateverable/foo: No such file or directory␤ in block <unit> at /tmp/HLEHB4VJXA line 1␤␤»
lizmat hmmm
10:33 entonian joined 10:34 MasterDuke left 10:39 entonian left
lizmat m: $*SPEC = IO::Spec::Win32; "foo".IO.absolute("foo".IO) 10:45
camelia This type cannot unbox to a native string: P6opaque, IO::Path
in block <unit> at <tmp> line 1
lizmat bisectable6: $*SPEC = IO::Spec::Win32; "foo".IO.absolute("foo".IO)
bisectable6 lizmat, Will bisect the whole range automagically because no endpoints were provided, hang tight
lizmat, Output on all releases: gist.github.com/bea0dce187599fd763...bb1fee629a 10:46
lizmat, Bisecting by exit code (old=2017.04.3 new=2017.05). Old exit code: 0
lizmat, bisect log: gist.github.com/51155ed5e4e72783aa...2f3c341804
lizmat, (2017-04-18) github.com/rakudo/rakudo/commit/c6...8474fcbb8b
lizmat, Output on all releases and bisected commits: gist.github.com/9a097feacc5a841f43...544a04aa8d
Geth_ rakudo: 08f5d028e3 | (Elizabeth Mattijsen)++ | src/core.c/IO/Spec/Win32.pm6
Fix IO::Path.absolute(IO::Path) breakage on Windows

This appears to have been introduced with c6fd736 in 2017. Spotted by ncaq++ in GH#4020.
10:51
linkable6 GH#4020 [open]: github.com/rakudo/rakudo/issues/4020 IO::Path absolute is failed without path when Windows
11:23 gfldex left 11:29 MasterDuke joined 11:43 dogbert17 left 12:02 leont joined 12:09 Altai-man joined 12:12 sena_kun left 12:19 gfldex joined
Altai-man releasable6, status 12:28
releasable6 Altai-man, Next release in ≈10 days and ≈6 hours. 1 blocker. Changelog for this release was not started yet
Altai-man, Details: gist.github.com/9fbc5f162711b68e6a...0b706008d9
12:29 dogbert17 joined
[Tux] Rakudo v2020.10-63-g08f5d028e (v6.d) on MoarVM 2020.10-31-gb13f6a24c
csv-ip5xs0.814 - 0.823
csv-ip5xs-208.191 - 8.319
csv-parser26.146 - 26.306
csv-test-xs-200.386 - 0.417
test7.607 - 7.643
test-t1.776 - 1.783
test-t --race0.814 - 0.815
test-t-2030.209 - 30.778
test-t-20 --race8.848 - 9.256
12:31
12:40 MasterDuke left 12:48 frost-lab left 13:15 MasterDuke joined
MasterDuke m: say 3.ACCEPTS(X::AdHoc.new(:payload(3))) # huh, didn't realize this worked 13:16
camelia True
MasterDuke how do i generate the statement prefix 'try' in QAST? e.g., `try "abc".Int` as something like `QAST::Op.new( :op('call'), :name('&try'), <...>)` 14:24
moritz it's not that simple, look for statement_prefix:sym<try> in src/Perl6/Actions.nqp 14:25
MasterDuke hm. it's actually in Actions that I want to generate it. guess i can call that method with self and the appropriate argument to generate the QAST? 14:28
moritz if you have an appropriate Match object, yes 14:57
15:42 raku-bridge left, raku-bridge joined 15:46 Geth_ left 16:07 jmerelo joined 16:10 sena_kun joined 16:12 Altai-man left 16:43 patrickb joined 16:57 lucasb joined
MasterDuke m: use nqp; say nqp::handle("three".Numeric, "CATCH", False) 17:17
camelia Cannot convert string to number: base-10 number must begin with valid digits or '.' in '3⏏5three' (indicated by ⏏)
in block <unit> at <tmp> line 1
MasterDuke m: use nqp; say nqp::handle("three".Numeric, "WARN", False)
camelia Cannot convert string to number: base-10 number must begin with valid digits or '.' in '3⏏5three' (indicated by ⏏)
in block <unit> at <tmp> line 1
MasterDuke m: use fatal; use nqp; say nqp::handle("three".Numeric, "CATCH", False) 17:18
camelia False
MasterDuke how do i nqp::handle ^^^ without `use fatal`?
m: use nqp; say nqp::handle("three".Numeric, "CONTROL", False) 17:19
camelia Cannot convert string to number: base-10 number must begin with valid digits or '.' in '3⏏5three' (indicated by ⏏)
in block <unit> at <tmp> line 1
MasterDuke m: say try "three".Numeric 17:20
camelia Nil
lizmat MasterDuke: if you're looking for examples of nqp::handle, check out map in Any-iterable 17:40
MasterDuke k, will od 17:46
18:11 jmerelo left
lizmat bisectable6: use isms 18:13
bisectable6 lizmat, Will bisect the whole range automagically because no endpoints were provided, hang tight
lizmat, More than 4 changes to bisect, please try a narrower range like old=2018.05 new=HEAD
lizmat, Output on all releases: gist.github.com/eb22d8521b46f1bd68...c30918f48f
18:59 [Coke] left 19:28 jmerelo joined 19:32 domidumont joined 19:40 domidumont left 19:56 jmerelo left 20:09 Altai-man joined 20:12 sena_kun left
Altai-man sourceable6, Int.Bool 20:44
sourceable6 Altai-man, github.com/rakudo/rakudo/blob/08f5...u.pm6#L104
tellable6 2020-11-11T15:59:44Z #raku <jmerelo> Altai-man please get your articles for advent ready as soon as possible. I'd like to have at least two weeks programmed before the end of November.
AlexDaniel` sourceable6: Int.Bool() 20:58
sourceable6 AlexDaniel`, github.com/rakudo/rakudo/blob/08f5...u.pm6#L105
AlexDaniel` Altai-man: maybe you were looking for this and not the proto ^ 20:59
I mean, it's on the next line, but still 🙂
Altai-man AlexDaniel`, just a proto was enough to try out if my hypothesis for github.com/Raku/doc/issues/1087 makes any sense. 21:00
21:01 patrickb left 21:02 eater left 21:12 [Coke] joined, [Coke] left, [Coke] joined 21:37 samebchase- left, finsternis left, sivoais left, rba left, jdv79 left, nine left, samebchase- joined, finsternis joined, sivoais joined, rba joined, jdv79 joined, nine joined 21:40 leont left, [Tux] left, timotimo left, lucasb left, ugexe left, samcv left, gugod left 21:41 lucasb joined, ugexe joined, lucasb left, samcv joined, gugod joined, leont joined, [Tux] joined, timotimo joined, gfldex left, japhb left, camelCaser left, masak left, lucs left, maggotbrain left, camelia left 21:42 maggotbrain joined, camelia joined, gfldex joined, japhb joined, camelCaser joined, masak joined, lucs joined, camelCaser left 21:43 AlexDaniel` left 21:44 MitarashiDango[m left, JJAtria[m] left, unclechu left 21:46 notable6 left, committable6 left, releasable6 left, sourceable6 left, statisfiable6 left, quotable6 left, evalable6 left, nativecallable6 left, squashable6 left, unicodable6 left, nebuchadnezzar left, Kaiepi left 21:47 notable6 joined, committable6 joined, releasable6 joined, sourceable6 joined, statisfiable6 joined, quotable6 joined, evalable6 joined, nativecallable6 joined, squashable6 joined, unicodable6 joined, nebuchadnezzar joined, lucasb joined 21:48 kawaii left, yuplushi left, rypervenche left, Kaiepi joined 21:50 kawaii joined, yuplushi joined, rypervenche joined 21:51 kawaii left, literal_ left, [Coke] left, Altai-man left, djinni` left, lizmat left, klapperl left, krunen left 21:53 [Coke] joined, Altai-man joined, djinni` joined, lizmat joined, klapperl joined, krunen joined, Voldenet joined, literal_ joined, raku-bridge left, tailgate left, raku-bridge joined, tailgate joined, raku-bridge left, tailgate left, literal_ left, [Coke] left, Altai-man left, djinni` left, lizmat left, klapperl left, krunen left, Voldenet left, yuplushi left, rypervenche left, notable6 left, committable6 left, releasable6 left, sourceable6 left, statisfiable6 left, quotable6 left, evalable6 left, nativecallable6 left, squashable6 left, unicodable6 left, nebuchadnezzar left, maggotbrain left, camelia left, gfldex left, japhb left, masak left, lucs left, samcv left, gugod left, ugexe left, leont left, [Tux] left, timotimo left, samebchase- left, finsternis left, sivoais left, rba left, jdv79 left, nine left, Kaiepi left, chansen_ left, sjn left, Summertime left, TreyHarris left, lucasb left, benchable6 left, bisectable6 left, shareable6 left, coverable6 left, tellable6 left, greppable6 left, linkable6 left, bloatable6 left, dogbert17 left, SmokeMachine left, tbrowder left, zostay left, vrurg left, sxmx left, nwc10 left, tobs left, tyil left, MasterDuke left 21:54 tailgate joined, raku-bridge joined, literal_ joined, Voldenet joined, krunen joined, klapperl joined, lizmat joined, djinni` joined, Altai-man joined, [Coke] joined, rypervenche joined, yuplushi joined, Kaiepi joined, lucasb joined, nebuchadnezzar joined, unicodable6 joined, squashable6 joined, nativecallable6 joined, evalable6 joined, quotable6 joined, statisfiable6 joined, sourceable6 joined, releasable6 joined, committable6 joined, notable6 joined, lucs joined, masak joined, japhb joined, gfldex joined, camelia joined, maggotbrain joined, timotimo joined, [Tux] joined, leont joined, gugod joined, samcv joined, ugexe joined, nine joined, jdv79 joined, rba joined, sivoais joined, finsternis joined, samebchase- joined, MasterDuke joined, dogbert17 joined, benchable6 joined, bisectable6 joined, shareable6 joined, coverable6 joined, tellable6 joined, greppable6 joined, linkable6 joined, bloatable6 joined, vrurg joined, chansen_ joined, SmokeMachine joined, zostay joined, tbrowder joined, sxmx joined, sjn joined, Summertime joined, TreyHarris joined, nwc10 joined, tobs joined, tyil joined, dogbert17 left, SmokeMachine left, tbrowder left, zostay left, kawaii joined, vrurg left, sxmx left, nwc10 left, tobs left, tyil left, dogbert17 joined, SmokeMachine joined, zostay joined, tbrowder joined 21:55 vrurg joined, sxmx joined, nwc10 joined, tobs joined, tyil joined, MasterDuke left, MasterDuke joined 21:56 lucasb left 22:01 lucasb joined 22:10 JJAtria[m] joined 22:11 AlexDaniel` joined 22:19 unclechu joined 22:25 MitarashiDango[m joined 23:14 Altai-man left