closer changed the topic of #ruby-core to: check the latest release candidate for 1.9.1 release ftp.ruby-lang.org:/home/yugui/ruby-1.9.1-r26021+1.tar.bz2
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Changing host]
rafaelfranca has joined #ruby-core
charliesome has joined #ruby-core
rafaelfranca has quit [Ping timeout: 252 seconds]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Read error: Connection reset by peer]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Ping timeout: 240 seconds]
nokada has quit [Remote host closed the connection]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Guest53755 has quit [Ping timeout: 276 seconds]
Guest53755 has joined #ruby-core
nokada has joined #ruby-core
nokada has quit [Remote host closed the connection]
Aethenelle has joined #ruby-core
nokada has joined #ruby-core
nokada has quit [Remote host closed the connection]
Aethenelle has quit [Quit: Aethenelle]
nokada has joined #ruby-core
nokada has quit [Remote host closed the connection]
knu has quit [Read error: Connection reset by peer]
nokada has joined #ruby-core
knu has joined #ruby-core
tax has quit [Read error: Connection reset by peer]
tax has joined #ruby-core
<znz_jp> biff: [ruby-changes:42852] nobu:r54926 (trunk): random.c: return value is not GCed - http://mla.n-z.jp/?ruby-changes=42852
<znz_jp> biff: [ruby-changes:42853] nobu:r54927 (trunk): random.c: default seed mark - http://mla.n-z.jp/?ruby-changes=42853
<znz_jp> biff: [ruby-changes:42855] nobu:r54929 (trunk): random.c: prefer rb_check_arity - http://mla.n-z.jp/?ruby-changes=42855
<znz_jp> biff: [ruby-changes:42856] nobu:r54930 (trunk): random.c: use rb_check_to_int - http://mla.n-z.jp/?ruby-changes=42856
<znz_jp> biff: [ruby-changes:42854] nobu:r54928 (trunk): random.c: sipseed_keys_t - http://mla.n-z.jp/?ruby-changes=42854
<znz_jp> biff: [ruby-changes:42858] nobu:r54932 (trunk): random.c: fill_random_bytes_syscall function - http://mla.n-z.jp/?ruby-changes=42858
<znz_jp> biff: [ruby-changes:42857] nobu:r54931 (trunk): random.c: refactor - http://mla.n-z.jp/?ruby-changes=42857
znz_jp has quit [Ping timeout: 250 seconds]
charliesome has joined #ruby-core
charliesome has quit [Client Quit]
lopex_ has joined #ruby-core
lopex has quit [Ping timeout: 244 seconds]
lopex_ is now known as lopex
znz_jp has joined #ruby-core
madgen has joined #ruby-core
znz_jp has quit [Remote host closed the connection]
znz_jp has joined #ruby-core
madgen has quit [Ping timeout: 244 seconds]
madgen has joined #ruby-core
tax has quit [Ping timeout: 250 seconds]
apofis has joined #ruby-core
madgen has quit [Ping timeout: 240 seconds]
madgen has joined #ruby-core
madgen has quit [Ping timeout: 240 seconds]
madgen has joined #ruby-core
madgen has quit [Ping timeout: 244 seconds]
Aethenelle has joined #ruby-core
nagachika has joined #ruby-core
nagachika has quit [Remote host closed the connection]
nagachika has joined #ruby-core
<znz_jp> biff: [ruby-changes:42859] kazu:r54933 (trunk): fix a typo [ci skip] - http://mla.n-z.jp/?ruby-changes=42859
apofis has quit [Ping timeout: 260 seconds]
Aethenelle has quit [Quit: Aethenelle]
<zzak> [Brad Langhorst, irc.freenode.net] shevy: yeah - this is overdue for a refactor...
<zzak> [Textual User, irc.freenode.net] better late than never :D
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] Should an ensure block be exception safe?
<zzak> [Tore Torell, irc.freenode.net] norc: yes, probably
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] toretore: Your reason being?
<zzak> [Tore Torell, irc.freenode.net] i imagine it will stop executing at an exception just like any other block of code
<zzak> [Tore Torell, irc.freenode.net] so for most ensure blocks you probably want to make sure it runs until completion
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] Program flow will be interrupted regardless if an exception is thrown.
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] My point is the debugging information about the original exception seems to be lost irrecoverably.
<zzak> [Tore Torell, irc.freenode.net] how so?
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] If release_resource raises an exception you have no way of knowing if an exception was thrown before.
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] But I guess that is the price for the ensure block.
<zzak> [realname, irc.freenode.net] hi this works s.scan(/.{1,4}/) but not this : s.scan(/.{1,#{options[:length]}/)
<zzak> [realname, irc.freenode.net] options[:length] = 4
<zzak> [shevy, irc.freenode.net] and what is s
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] troulouliou_div2: Can you be specific what you mean by "it does not work" ?
<zzak> [realname, irc.freenode.net] shelling__, a string
<zzak> [shevy, irc.freenode.net] no I mean exactly
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] asm>> s.scan(/.{1,#{options[:length]}/)
<zzak> [Butler IRC Bot, Version 0.1.0, irc.freenode.net] norc: I have disassembled your code, the result is at https://eval.in/566659
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] The code compiles fine for me.
<zzak> [realname, irc.freenode.net] norc, it does outbut a string splitted every 4 chars
<zzak> [shevy, irc.freenode.net] btw are you missing a } ?
<zzak> [realname, irc.freenode.net] shevy, yes i m -> went to shame :)
<zzak> [realname, irc.freenode.net] shevy, long time did not used ruby :)
<zzak> [Tore Torell, irc.freenode.net] norc: i don't get what you mean. the rescue runs before the ensure
<zzak> [shevy, irc.freenode.net] \o/
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] toretore: Precisely.
<zzak> [62.176.232.140 - http://webchat.freenode.net, irc.freenode.net] toretore: Well leave the rescue handlers away then it becomes a bit more sensible.
enebo has joined #ruby-core
nagachika has quit [Remote host closed the connection]
Aethenelle has joined #ruby-core
madgen has joined #ruby-core
enebo has quit [Quit: enebo]
enebo has joined #ruby-core
headius has quit [Ping timeout: 264 seconds]
headius has joined #ruby-core
madgen has quit [Ping timeout: 276 seconds]
enebo has quit [Quit: enebo]
madgen has joined #ruby-core
headius has quit [Ping timeout: 276 seconds]
headius has joined #ruby-core
tax has joined #ruby-core
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Changing host]
rafaelfranca has joined #ruby-core
madgen has quit [Ping timeout: 276 seconds]
tax has quit [Ping timeout: 265 seconds]
deepak_ has joined #ruby-core
deepak has quit [Ping timeout: 244 seconds]
deepak_ is now known as deepak
madgen has joined #ruby-core
rafaelfranca has quit [Remote host closed the connection]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Changing host]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Ping timeout: 265 seconds]
rafaelfranca has joined #ruby-core
rafaelfranca has quit [Changing host]
rafaelfranca has joined #ruby-core
enebo has joined #ruby-core
enebo has quit [Quit: enebo]
charliesome has joined #ruby-core
rafaelfranca has quit [Remote host closed the connection]
<znz_jp> biff: [ruby-changes:42861] svn:r54935 (trunk): * 2016-05-07 - http://mla.n-z.jp/?ruby-changes=42861
<znz_jp> biff: [ruby-changes:42860] nobu:r54934 (trunk): process.c: argument types over conversion - http://mla.n-z.jp/?ruby-changes=42860
Aethenelle has quit [Quit: Aethenelle]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Aethenelle has joined #ruby-core