This project is closed and read-only.
Actions
Bug #1693
closedARGF.rewind Doesn't Reset ARGF.lineno
Bug #1693:
ARGF.rewind Doesn't Reset ARGF.lineno
Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
ruby 1.9.2dev (2009-06-25 trunk 23854) [i686-linux]
Updated by runpaint (Run Paint Run Run) about 17 years ago
=begin
This seems to be resolved on 1.9 now; 1.8 is still affected.
=end
Updated by nahi (Hiroshi Nakamura) almost 17 years ago
=begin
0% ruby19 -ve 'ARGF.gets; ARGF.rewind; p [ARGF.lineno, $.]; ARGF.gets; p [ARGF.lineno, $.]' ~/.zshhist
ruby 1.9.2dev (2009-12-01 trunk 25970) [i686-linux]
[0, 1]
[1, 1]
0% ruby -ve 'ARGF.gets; ARGF.rewind; p [ARGF.lineno, $.]; ARGF.gets; p [ARGF.lineno, $.]' ~/.zshhist
ruby 1.8.8dev (2009-12-07 revision 25983) [i686-linux]
[1, 1]
[1, 1]
0%
=end
Updated by naruse (Yui NARUSE) over 14 years ago
- Status changed from Open to Rejected
This WONTFIX on 1.8.
Actions