Project

General

Profile

Actions

Bug #15455

closed

In v2.6.0 the return value of `each_with_object` and `each_object` is truncated when the object is a hash.

Added by CaryInVictoria (Cary Swoveland) over 5 years ago. Updated over 5 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:90685]

Description

RUBY VERSION: 2.6.0 (2018-12-23 patchlevel -1)

a = [1, 2, 3]

a.each_with_object([]) #=> #<Enumerator: [1, 2, 3]:each_with_object([])> a.each_with_object(1..3) #=> #<Enumerator: [1, 2, 3]:each_with_object(1..3)> a.each_with_object("cat") #=> #<Enumerator: [1, 2, 3]:each_with_object("cat")>

So far so good. But there is a problem when the object is a hash.

a.each_with_object({}) #=> #<Enumerator: [1, 2, 3]:each_with_objec)> a.each_with_object(Hash.new(0)) #=> #<Enumerator: [1, 2, 3]:each_with_objec)> a.each.with_object(Hash.new(0)) #=> #<Enumerator: #<Enumerator: [1, 2, 3]:each>:with_objec)>

This problem does not occur with v2.5.3.

Updated by shevegen (Robert A. Heiler) over 5 years ago

X-mas day change doable? :)

Updated by CaryInVictoria (Cary Swoveland) over 5 years ago

  • Description updated (diff)

Corrected a tiny typo.

Actions #3

Updated by nobu (Nobuyoshi Nakada) over 5 years ago

  • Status changed from Open to Closed

Applied in changeset trunk|r66519.


enumerator.c: fix inspect with the last empty hash

[ruby-core:90685] [Bug #15455]

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0