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
Deprecate @vectorize_1arg for Dates functions within scope of Dates module (#18456)
* Deprecate vectorize_1arg for Dates within module
Otherwise there are issues with functions being independently defined
within multiple modules:
```julia
julia> using Base.Dates
julia> unix2datetime(0)
WARNING: both Dates and Base export "unix2datetime"; uses of it in module Main must be qualified
ERROR: UndefVarError: unix2datetime not defined
```
* Slight adjustment for readability
0 commit comments