You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spawned from the language improvements mega-discussion (#3107). The file() method can be used to load a single file or multiple files using a glob string, which means this function can return a single path or a list depending on the input. This is bad. See #1236 and #2425 for similar problems.
Instead, there should be a separate function for globs, e.g. glob(), and the glob support via file() should be deprecated.
The text was updated successfully, but these errors were encountered:
Spawned from the language improvements mega-discussion (#3107). The
file()
method can be used to load a single file or multiple files using a glob string, which means this function can return a single path or a list depending on the input. This is bad. See #1236 and #2425 for similar problems.Instead, there should be a separate function for globs, e.g.
glob()
, and the glob support viafile()
should be deprecated.The text was updated successfully, but these errors were encountered: