[jruby-dev] [jira] Created: (JRUBY-5829) Improve jit'd names?

2011-05-27 Thread Jordan Sissel (JIRA)
Improve jit'd names? Key: JRUBY-5829 URL: http://jira.codehaus.org/browse/JRUBY-5829 Project: JRuby Issue Type: Improvement Reporter: Jordan Sissel Assignee: Thomas E Enebo Attachments: j

[jruby-dev] stdout.sync behaviour in JRuby differs from MRI - flush after each print!

2011-05-27 Thread BG - Ben Armstrong
Apparently, synchronous output to stdout in JRuby is implemented differently from MRI. It appears to flush after each "print" whereas in MRI it does not. Can this behaviour be modified? This sample code, demonstrates the lack of a flush after each print in MRI, even though $stdout.sync=true :

Re: [jruby-dev] stdout.sync behaviour in JRuby differs from MRI - flush after each print!

2011-05-27 Thread BG - Ben Armstrong
On 05/27/2011 09:34 AM, BG - Ben Armstrong wrote: Apparently, synchronous output to stdout in JRuby is implemented differently from MRI. It appears to flush after each "print" whereas in MRI it does not. Can this behaviour be modified? This sample code, demonstrates the lack of a flush after eac