michal.brunat (Michal Brunát)
- Login: michal.brunat
- Email: mbrunat@volny.cz
- Registered on: 08/14/2015
- Last sign in: 08/14/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/14/2015
-
12:11 PM Ruby Bug #11445 (Rejected): Ruby 1.9.3 - StringIO clone method creates new instance but somehow connected with the original instance
- In Ruby 1.9.3 cloned `StringIO` instance has influence on close state of original instance:
~~~ruby
require 'stringio'
sio1 = StringIO.new( 'abc' )
sio2 = sio1.clone
sio2.read
sio1.pos # => 3, expected 0
sio2.close
sio1....