eao197 (Yauheni Akhotnikau)
- Login: eao197
- Email: eao197@yahoo.com
- Registered on: 10/30/2008
- Last sign in: 03/31/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
02/03/2009
-
11:56 PM Ruby Bug #1099 (Closed): Invalid value of StringIO#pos after StringIO#ungetc
- =begin
This unit test is passed under Ruby 1.8.7 and failed under Ruby 1.9.1-p0 (mswin32):
require 'stringio'
require 'test/unit'
class TC_StringIO_Ungetc < Test::Unit::TestCase
def test_ungetc
b = '\\b00010001 \\B...
10/30/2008
-
11:18 PM Ruby Bug #701 (Closed): Wrong behaviour of StringIO#ungetc
- =begin
This is the behaviour of StringIO#ungetc from Ruby 1.8.7:
irb(main):001:0> require 'stringio'
=> true
irb(main):002:0> a=StringIO.new('abcd')
=> #<StringIO:0x2ba7e24>
irb(main):003:0> a.getc;a.getc;a.getc;a.tell # Re...