-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename tail
to avoid clash with Base.tail
#2261
Comments
tail
to avoid possible clash with Base.tail
?tail
to avoid possible clash with Base.tail
see #2262 |
tail
to avoid possible clash with Base.tail
tail
to avoid clash with Base.tail
@bkamins Any estimate of when this change will be released? I keep getting annoying bugs / warnings because of this (end up calling the wrong |
Well - we could make a release now as we have enough functionality to justify it, but users wanted to postpone the release to make sure we include all breaking things in 0.22 and there are several loose ends related to |
I would really like hold off on release until we are done. |
I typically import
Base: tail
into scope. If I then dousing DataFrames
, I get a warningAlthough
Base.tail
is not exported, it is documented (https://docs.julialang.org/en/v1/base/collections/#Base.tail) and I think many people use it regularly.To avoid this clash, maybe
DataFrames
can use a different name for this function? Or it could just extendBase.tail
.The text was updated successfully, but these errors were encountered: