From: fletchto99@... Date: 2018-08-16T23:14:37+00:00 Subject: [ruby-core:88507] [Ruby trunk Bug#15001] Peek causes cursor to advance when reading files Issue #15001 has been reported by fletchto99 (Matthew Langlois). ---------------------------------------- Bug #15001: Peek causes cursor to advance when reading files https://bugs.ruby-lang.org/issues/15001 * Author: fletchto99 (Matthew Langlois) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-darwin17] * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN ---------------------------------------- When a call to peek is made on the enumerator for the lines of a file the cursor advances. File: ~~~ text 1 2 3 ~~~ Sample script: ~~~ ruby e = File.open("f").each_line e.peek p e.each.to_a ~~~ The output is => ["2\n", "3\n"] The expected output is => ["1\n", "2\n", "3\n"] When performing the same operation on a string we get the expected output. ~~~ ruby e = "1\n2\n3\n".each_line e.peek p e.each.to_a ~~~ The output is: => ["1\n", "2\n", "3\n"] -- https://bugs.ruby-lang.org/ Unsubscribe: