Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upproposal: leave "if err != nil" alone? #32825
Comments
gopherbot
added this to the Proposal milestone
Jun 28, 2019
gopherbot
added
the
Proposal
label
Jun 28, 2019
This comment has been minimized.
This comment has been minimized.
|
I second this. I really like how decorating every error before returning it adds human readable documentation to the source (usually we format our errors as "could not [what I am doing in these lines of code]: [previous error]") and also to the users reading errors. Errors generated this way are extremely informative and much easier to read than stack traces. Printed errors that include stack traces usually assume you have ready access to sources (administrators might not have such access) and actually know your way in the code. Errors without any form of context or tracing (the bare string "EOF") are absolutely useless. I think having shortcuts that make it easier to return naked errors will make Go programs print a lot of useless errors. If anything, we should push and support decorating errors with context, maybe with new vet and lint rules. |
This comment has been minimized.
This comment has been minimized.
andreynering
commented
Jun 28, 2019
•
|
I also like the explicitly error check. I think that instead of rethinking errors, we could try an alternative approach to make these checks shorter. Here's an example which I don't necessarily agree: value, err := foo()
return err if err != nilThis would allow an shorter but still explicit approach. And it'd allow adding context! That said, inline ifs are a Ruby thing and don't feel very Goish, but this is just brainstorming. Maybe we find something else. EDIT: I added a proposal for this here: #32860 |
This comment has been minimized.
This comment has been minimized.
firstrow
commented
Jun 28, 2019
|
there should be only one way of doing a thing |
This comment has been minimized.
This comment has been minimized.
DisposaBoy
commented
Jun 28, 2019
I think it's fair to say that we all know the answer to this. You need only go read one of the various proposals to find out the answer if you sincerely don't know. IMO, there's too little detail here for us to have a focused discussion (i.e. I don't think it qualifies as a proposal) and it will soon turn into another bike-shed full of circle-jerking and ideas that make the code less readable. |
This comment has been minimized.
This comment has been minimized.
henderjon
commented
Jun 28, 2019
|
So much this. |
This comment has been minimized.
This comment has been minimized.
jochasinga
commented
Jun 28, 2019
|
Arguably I got into Go because of this explicit error handling. It sits somewhere between implicit try-catch that many languages go for and function types like Option or Maybe, which favors being returned to the user and be handled explicitly. I'm not sure if a new construct would really solve this. If you wrapped func handleErr(err error, cb func(error)) {
if err := nil {
cb(err)
}
}But the issue that makes this helper function less generally useful is the type system, which is a different topic. |
This comment has been minimized.
This comment has been minimized.
|
I second this. Adding context via defer does not make sense either, since we want to return different error messages to distinguish the different kind of errors. A |
This comment has been minimized.
This comment has been minimized.
danpantry
commented
Jun 28, 2019
|
Frankly, I don't want an implicit return that type Result<T> interface {
Expect(err error) T
OrElse(defaultValue T) T
}
func From<T>(value T, err error) Result<T> { ... }To me, this is a lot cleaner than the builtin currently being proposed, although further changes would be required to the above since you'd have a proliferation of methods that returned (value, error) and Result |
This comment has been minimized.
This comment has been minimized.
lpar
commented
Jun 28, 2019
|
The current |
This comment has been minimized.
This comment has been minimized.
jtarchie
commented
Jun 28, 2019
•
|
It might not make sense to change it, because the wrong problem is trying to be solved. The code that we are familiar with is not error handling. if err != nil {
return err
}This is error If I were to demonstrate this in a different language, Ruby. begin
some_method_that_raises_an_error
rescue => e # catch any exception
retry e # throw it up again
endThis relays the same behavior as the golang code. When we detect that an exception occurred and then reraise it. We just throw it up the stack. In golang, we Where is the actual error handling occurring? We've all had similar experiences of the failure of this pattern. For example, receiving a This is why I believe the I've see |
This comment has been minimized.
This comment has been minimized.
chrispassas
commented
Jun 28, 2019
|
I support keeping err!=nil check as is. |
This comment has been minimized.
This comment has been minimized.
allingeek
commented
Jun 28, 2019
|
Every time I dig into a sizable Go code base I ask myself how I might reduce some of the boilerplate. I always come back to:
|
This comment has been minimized.
This comment has been minimized.
|
The issue tracker is useful for many things, but one thing it is not useful for is a detailed discussion of a complex topic. The issue tracker provides no threading, and replying to a specific message is awkward. Since there is no actual proposal here, just a response to other proposals, I really strongly encourage you to take this discussion to the golang-nuts mailing list. |
This comment has been minimized.
This comment has been minimized.
EthanZeigler
commented
Jun 28, 2019
|
If I may, I believe this is the answer. This new error proposal is in direct conflict with the goals of the language. The reason I love golang is because of its simplicity and clear use of control flow. One of the things I despise most about Java is the try throw construct. It's so disgusting. It encourages terrible error handling. Sending exceptions up the call stack is a horrible and disgusting method of handling control flow. On top, it encourages wrapping everything in a giant check and calling it a day instead of a self documenting and explicit handling of each error situation. If err != nil encourages good error handling, is self documenting and encourages good documentation as to the specific case, and it's honestly one of the things I love most about go. Making this new control flow interrupt, using messy, somewhat ambiguous returns and parameters, and confusing semantics is not in the spirit of the language I've come to adore. Verbosity is not a bad thing. Unnecessary verbosity is, but I'd argue that go's error handling is not unnecessary. It's part of the language's charm. |
This comment has been minimized.
This comment has been minimized.
lane-c-wagner
commented
Jun 28, 2019
|
Couldn't agree more. The explicit error handling is one of the best features of the language IMO. I always feel like many who are bothered by it just aren't used to it yet. |
This comment has been minimized.
This comment has been minimized.
|
It is not good for the issues are separated, but I'm thinking that two opinions are merged as one opinion in this case.
GitHub vote icons can not interpret the second. |
This comment has been minimized.
This comment has been minimized.
Gats
commented
Jun 28, 2019
|
The explicit error handling in go is one of the reasons why I love golang. I don't understand why any go developer would want it any other way. I think the proposal to add new syntax is mostly from people comfortable using syntax used in other languages. it may take some getting used to but it works perfectly once you get use to it. |
This comment has been minimized.
This comment has been minimized.
|
I wrote #32811 and I support this proposal more... I'd rather just leave error handling alone. I think the emoji reactions to this proposal say a lot. |
This comment has been minimized.
This comment has been minimized.
marcospedreiro
commented
Jun 28, 2019
•
|
I personally agree with leaving err handling as it is. One of things I like about Go is that the language is minimal, and generally speaking has one way of doing things. By adding new syntax for error handling, we’ll create a world where x% of code uses the current method, and y% uses the new method. This will, among other issues already discussed, create inconsistent code bases. I personally don’t think the value of new error handling syntax is worth the trade offs, since I consider the existing syntax enough/sufficient. |
This comment has been minimized.
This comment has been minimized.
crueber
commented
Jun 28, 2019
|
As someone that is newer to Golang, one of the things that I find refreshing about the language is the explicit error handling. I've worked in Java, Ruby, Python, and Node pretty heavily, and dealing with errors is so much more onerous than in Go. I would rather see the clear 'path' of errors, than have it implied to me by some language construct that makes it more vague. |
This comment has been minimized.
This comment has been minimized.
aseure
commented
Jun 28, 2019
•
|
ˋreturn ... if ...ˋ suggestion from @andreynering is actually fairly smart imho. Keeps the code explicit (no hidden control flow break) while cutting down the boilerplate (one-liner). |
This comment has been minimized.
This comment has been minimized.
troy0820
commented
Jun 28, 2019
|
Agree, leave |
This comment has been minimized.
This comment has been minimized.
kevineaton
commented
Jun 28, 2019
|
I prefer the current format. It is clear and an easy pattern to teach. Bringing new engineers up to speed is simple as they can learn one simple pattern and repeat it. It also asks the users to at least consider the error in the current context, ensuring that at least the engineer is acknowledging an error can occur here and I need to think about what to do. |
This comment has been minimized.
This comment has been minimized.
integrii
commented
Jun 28, 2019
|
I wrote #32804 and I would much rather see things NOT change. If your code is long, its because it does a lot of stuff. If you have a lot of error handling code, it's because you're doing a good job of handling all your cases. Please, lets not add things just for the sake of adding things. |
This comment has been minimized.
This comment has been minimized.
rothrock
commented
Jun 28, 2019
|
I enjoy the simplicity of the error handling as is. Expect is just an anagram for except, and I'd rather not use it. Thanks for starting this. |
This comment has been minimized.
This comment has been minimized.
tmathews
commented
Jun 28, 2019
|
Please don't change my holy grail. |
This comment has been minimized.
This comment has been minimized.
icholy
commented
Jun 28, 2019
|
There was overwhelming community feedback requesting more streamlined error handling (from the annual survey). The Go Team is now addressing that issue. |
This comment has been minimized.
This comment has been minimized.
kevineaton
commented
Jun 28, 2019
|
@icholy Sure, but the current proposals leave a lot to be desired. They all seem to either obfuscate the error handling, revert to more try/catch/finally style implementations, bubble the error handling up out of context, or otherwise make it more complicated. Since Go is supposed to be a simple language, I think a lot of us were hoping for a simple option. I haven't seen any I personally like, so I think that the better option is to keep the current pattern. One complaint was having to type it, but virtually every editor has shortcuts to insert code snippets, so it really isn't a big deal. Perhaps it is my own experience having used Go since pre 1.0, but I happen to like the simplicity and don't mind the redundancy. |
This comment has been minimized.
This comment has been minimized.
urandom
commented
Jul 9, 2019
|
It seems there is some confusion as to what exactly try is trying to achieve. IMHO, the problem isn't writing multiple if blocks that check for errors. You write those once and you are done. The problem is reading code that has multiple of those blocks. We do a lot more reading than writing. And these blocks obfuscate the actual code because they intertwine with it. Worse yet, a lot of the time they are almost exactly the same, with only a minor string difference somewhere within that if block. I personally preferred the old check - handle draft, but this at least does a good job separating error and business paths. And we might finally be able to have a single function scope context as opposed to for each call, which currently has a good chance of repeating the same thing as the parent error. |
This comment has been minimized.
This comment has been minimized.
Freeaqingme
commented
Jul 9, 2019
|
@icholy wrote:
I just looked up the survey here: https://blog.golang.org/survey2018-results Apparently the question was: "What is the biggest challenge you personally face using Go today?" with possible answer "Error handling". I seriously wonder how based on that question+answer it was deduced that a more brief syntax was required. I might have also answered 'error handling', but by no means I'd have wanted to see another syntax. If I'd checked this option in the survey, I'd have thought of better allowing to wrap errors, provide them with stack traces, etc. My suggestion would be to step back from all of the error handling proposals (effectively what @miekg was suggesting). And first determine what it actually is that the community wants, document that. Then find out why that's what they want. And only afterwards start looking at ways to achieve that. I've just been going through the try proposal, but unless I'm missing something it neglects to say why it's being proposed, other than "to eliminate the boilerplate if statements [...}". But there's no mention on why elimination of those boilerplate if statements is necessary. |
This comment has been minimized.
This comment has been minimized.
deanveloper
commented
Jul 9, 2019
•
|
I definitely agree with the above. Let's see if the new error values changes help aid the error handling complaints that people have with Go. Then we can see if a more brief syntax is required. |
This comment has been minimized.
This comment has been minimized.
icholy
commented
Jul 9, 2019
•
|
People here are arguing against |
This comment has been minimized.
This comment has been minimized.
lane-c-wagner
commented
Jul 9, 2019
|
@icholy Ignoring errors indicates that the dev doesn't care about that error. The error is insignificant or is believed by the caller to be impossible. If that is the case then "try" is just as pointless, the caller simply wouldn't wrap the function in a "try". |
This comment has been minimized.
This comment has been minimized.
lpar
commented
Jul 9, 2019
•
I agree strongly with this. I see a lot of basic disagreement on what functionality any improvement to Go error handling should even support. Every different chunk of functionality people mention is triggering bikeshedding over its naming and syntax, so the discussion is going nowhere. I'd like to know in more detail what it is that the broader Go community actually wants from any proposed new error handling feature. I've put together a survey listing a bunch of different features, pieces of error handling functionality I've seen people propose. I've carefully omitted any proposed naming or syntax, and of course tried to make the survey neutral rather than favoring my own opinions. If people would like to participate, here's the link, shortened for sharing: https://forms.gle/gaCBgxKRE4RMCz7c7 Everyone who participates should be able to see the summary results. Then perhaps once we have a better idea what people actually want, we'll be able to have an intelligent discussion about whether the try proposal provides those things. (And then maybe even go on to discussing syntax.) |
This comment has been minimized.
This comment has been minimized.
icholy
commented
Jul 9, 2019
•
|
@lane-c-wagner are you trying to saying that returning an un-annotated error it is the same as not returning it at all? edit: fixed previous comment |
This comment has been minimized.
This comment has been minimized.
lane-c-wagner
commented
Jul 9, 2019
|
@icholy Ah I misunderstood. When you said "bare" I thought you meant "_" ignored errors. |
This comment has been minimized.
This comment has been minimized.
|
This proposal argues that no action should be a valid action. This change affects all users of the language because they read the code. As such, a survey identifying the biggest hurdle still needs to ask the community whether this hurdle is worth fixing. This proposal is the closest evaluation of such a question. |
This comment has been minimized.
This comment has been minimized.
tv42
commented
Jul 12, 2019
|
Please stop saying "that everybody is free to ignore" |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
sirkon
commented
Jul 14, 2019
•
|
@griesemer you survey was heavily lacking. I voted for error handling, but the issue I meant was full type safety, not verbosity. You better make another one about errors only. And I still want sum types. |
This comment has been minimized.
This comment has been minimized.
urban-wombat
commented
Jul 15, 2019
|
This is a proposal about the way gofmt currently formats if err != nil (This is not an opinion about the try() proposal.) When an if statement returns a one-line not-nil error value, such as:
gofmt could relax its own if-statement rule and format it on one line like this:
Three lines of error handling code becomes just one line. Less clutter. Easier to follow program flow. There will need to be some judgement about where to draw the line (pun acknowledged) with this
But elaborate multi-line error handling should remain as it is: multi-line and clear and explicit. |
This comment has been minimized.
This comment has been minimized.
networkimprov
commented
Jul 17, 2019
|
The try proposal has been withdrawn: #32437 (comment) Generics anyone? |
This comment has been minimized.
This comment has been minimized.
thomasf
commented
Jul 17, 2019
•
I have tried that, imho the code is even more unreadable that way than with multi line formatting. try is much better than that solution. |
This comment has been minimized.
This comment has been minimized.
plyhun
commented
Jul 17, 2019
|
IMO the problem here is rather not how the error handling is performed, but whether it is ignored. Wouldn't it be possible to leave the |
This comment has been minimized.
This comment has been minimized.
sorenvonsarvort
commented
Jul 17, 2019
Many people want a linter showing ignored errors. |
This comment has been minimized.
This comment has been minimized.
plyhun
commented
Jul 17, 2019
|
I'd prefer making this a hard error, but looking at the tons of already written legacy, linter is fair as well. |
This comment has been minimized.
This comment has been minimized.
therealplato
commented
Jul 17, 2019
|
i find https://github.com/kisielk/errcheck valuable for telling me about unhandled errors @plyhun @sorenvonsarvort |
This comment has been minimized.
This comment has been minimized.
|
As seen in the discussion on #32437, this proposal has in effect been accepted for now. Closing. If the issue arises again, a new proposal can be opened. |
ianlancetaylor
closed this
Jul 17, 2019
This comment has been minimized.
This comment has been minimized.
DeedleFake
commented
Jul 17, 2019
|
I'm starting to think that one of the reasons that a lot of the proposals feel like they don't quite fit right is because they're actually trying to address two different problems at the same time. On the one hand, it's true that having Multiple return functions feel very, very different from single return functions, despite the seemingly small difference between the two. It's kind of like if there were extra restrictions on calling functions that take more than one argument. It feels very odd to deal with sometimes. When you call a function with multiple return values, you almost always need to do so on its own line, and it, combined with I don't know. Maybe it's just me. But I've used Go for nearly 10 years now and calling functions with multiple returns still feels kind of awkward to me sometimes. |
This comment has been minimized.
This comment has been minimized.
|
Thank you! |
This comment has been minimized.
This comment has been minimized.
mvndaai
commented
Jul 18, 2019
|
There is one actually issue with
When you have other variables from needed after the handling creates a problem.
Or the other way variable already exists.
The |
This comment has been minimized.
This comment has been minimized.
Freeaqingme
commented
Jul 18, 2019
why "should" it not exist after the if block completes? The compiler can optimize for it (if it'd deem that necessary), and there's no mental load when the err := stmt()\nif err != nil {} block completes because these almost always go together. I haven't yet looked at your proposal in depth (though kudo's for going through the effort of writing one!). However, as I also outlined in my comment above, I think more research is required into any perceived problems, before we dig into any proposals to resolve them. |
This comment has been minimized.
This comment has been minimized.
mvndaai
commented
Jul 18, 2019
|
@Freeaqingme errors should not exist after the In the CopyFile example, there is There are also other oddities. If I have |
This comment has been minimized.
This comment has been minimized.
|
Technically in r, err := os.Open(src)
if err != nil {
return ...
}
w, err := os.Create(dst)the second instance of |
miekg commentedJun 28, 2019
The Go2 proposal #32437 adds new syntax to the language to make the
if err != nil { return ... }boilerplate less cumbersome.There are various alternative proposals: #32804 and #32811 as the original one is not universally loved.
To throw another alternative in the mix: Why not keep it as is?
I've come to like the explicit nature of the
if err != nilconstruct and as such I don't understand why we need new syntax for this. Is it really that bad?