Skip to content

Commit 91f4da0

Browse files
committed
Limit indexing to AbstractArray
1 parent d1fae61 commit 91f4da0

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ New library features
8282

8383
* The `redirect_*` functions can now be called on `IOContext` objects.
8484
* New constructor `NamedTuple(iterator)` that constructs a named tuple from a key-value pair iterator.
85-
* Generators support `getindex`, `firstindex`, and `lastindex` if indexing is supported by the underlying iterator ([#37648]).
85+
* Generators support `getindex` when the underlying iterator is a subtype of `AbstractArray` ([#37648]).
8686

8787
Standard library changes
8888
------------------------

base/generator.jl

-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ function getindex(g::Generator{<:AbstractArray}, I...)
6262
end
6363
end
6464

65-
getindex(g::Generator, I...) = collect(g)[I...]
66-
6765
firstindex(g::Generator) = firstindex(g.iter)
6866
lastindex(g::Generator) = lastindex(g.iter)
6967

test/functional.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,5 @@ end
230230

231231
@test (tuple(x) for x in ["a"])[1] == ("a",)
232232
@test (tuple(x) for x in [[0]])[1] == ([0],)
233-
@test (x * y for (x, y) in Dict(3 => 4))[1] == 12
233+
@test_throws MethodError (x * y for (x, y) in Dict(3 => 4))[1]
234234
end

0 commit comments

Comments
 (0)