-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
io/ioutil: flag package and functions with the Deprecated marker #43799
Conversation
All implementations are now part of io or os packages, per golang#42026. Flag all implementations in ioutil, and the package itself, with the Deprecated marker so that tooling can pick it up and interpret it accordingly. Updates golang#42026
This PR (HEAD: f6ebc2a) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/284777 to see it. Tip: You can toggle comments from me using the |
Message from Ian Lance Taylor: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Florin Patan: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Ian Lance Taylor: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Colin Arnott: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Russ Cox: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Florin Patan: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Ian Lance Taylor: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Colin Arnott: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
Message from Russ Cox: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/284777. |
@dlsniper do you want to rebase and fix merge conflicts per discussion over in #51927 (comment)? |
This PR is being closed because go.dev/cl/284777 has been abandoned. Thanks for the CL. This change was applied a year later for Go 1.19 via CL 395918, so if this CL were to be rebased it'd become empty. Closing. |
All implementations are now part of io or os packages, per #42026.
Flag all implementations in ioutil, and the package itself, with
the Deprecated marker so that tooling can pick it up and interpret
it accordingly.
Updates #42026