try:
[...]
except IOError:
# Worst-case scenario we can only catch errors at a granularity
# of the whole function.
[...]
else:
# If we have access to the source, we can silence errors on a
# per-expression basis, which is "better".
[...]
and then:
def __exit__(self, exc_type, exc_value, traceback):
# Returning True prevents the error from propagating. Don't silence
# KeyboardInterrupt or SystemExit. We aren't monsters.
I've been searching for something similar I saw years ago. It was a python library that would remove "heretical" code or something like that. Any error would be "eradicated".
It was funny! There was a religious or medieval theme or something. I can never find it...
In my previous life I was maintaining some backend services. One of the most common reasons for a service dying was a typo in a name in some rarely visited code path. I was tempted to write a similar module that would be a little bit smarter: when some identifier (variable, method, etc.) was not found, instead of raising an exception, try to find a similarly named thing and use that instead. I never did find a good way of implementing that.
I think you might like something like TheFuck?
EDIT: This bash commandline completion has been updated to by default wait for the user to verify the replacement command is what they wanted; this pretty much turns this from a terminal Russian Roulette into a kinda handy autosuggestion!
How about better testing and path coverage of your code? I hope that was also explored as a way to stabilize your codebase? Otherwise your suggestion does come offa bit as 'cowboy-ish' to say the least ...
There's debate in that thread whether this project is satire or not. I must admit it looks remarkably like satire, especially the test suite.
That said, I have met some developers who would find this as an advantage and might actually try to put it into use. Generally these are folks who prefer the default soldier-on-in-the-face-of-errors behavior from sh and perl.
Ah, this leads to some of my favourite python bugs. Silent failures because you are catching and ignoring an error in some higher calling function where the error type that was once designed to deal with a single case is now overly broad. I've almost given up using try/catch for KeyErrors as a result.
Python uses try/except, not try/catch. The only reason to catch KeyError is to detect missing keys, so if you are trying to do that, only wrap your dict access rather than wrapping large blocks of code where anything could happen. If you are writing code to ignore errors, that is a bug in your own code, not a python bug.
But this tool is not meant to be used. You should never have to write
"import someReallyOffensiveModuleName" because those are jokes not meant to be used at work.
At work you should probably never be using a tool that just ignores errors. Errors are there for a reason, and you should have a very good reason for ignoring them.
[+] [-] irl_zebra|10 years ago|reply
def test_context_manager(): with fuckit: pass
[+] [-] ndr|10 years ago|reply
[+] [-] ninetax|10 years ago|reply
It was funny! There was a religious or medieval theme or something. I can never find it...
[+] [-] pit|10 years ago|reply
https://github.com/munificent/vigil
[+] [-] doki_pen|10 years ago|reply
[+] [-] 3pt14159|10 years ago|reply
http://lmgtfy.com/?q=zero+factorial
[+] [-] ocdtrekkie|10 years ago|reply
How could anyone not love this tool?
[+] [-] kelvin0|10 years ago|reply
[+] [-] bsg75|10 years ago|reply
[+] [-] avian|10 years ago|reply
[+] [-] HCIdivision17|10 years ago|reply
https://github.com/nvbn/thefuck
(Previous discussion: https://news.ycombinator.com/item?id=9396116 )
[+] [-] insertnickname|10 years ago|reply
[+] [-] kelvin0|10 years ago|reply
[+] [-] dgcoffman|10 years ago|reply
http://rubylearning.com/satishtalim/ruby_method_missing.html
[+] [-] kevinschumacher|10 years ago|reply
https://github.com/mattdiamond/fuckitjs
So if you want the same thing but for JS give the above a shot.
[+] [-] collyw|10 years ago|reply
[+] [-] jefurii|10 years ago|reply
http://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/view...
[+] [-] mcfunley|10 years ago|reply
[+] [-] ljk|10 years ago|reply
[+] [-] wyldfire|10 years ago|reply
That said, I have met some developers who would find this as an advantage and might actually try to put it into use. Generally these are folks who prefer the default soldier-on-in-the-face-of-errors behavior from sh and perl.
[+] [-] hyperion2010|10 years ago|reply
[+] [-] pekk|10 years ago|reply
[+] [-] pikeymick|10 years ago|reply
[+] [-] ronjouch|10 years ago|reply
[+] [-] teh_klev|10 years ago|reply
https://news.ycombinator.com/item?id=6858855
[+] [-] dacox|10 years ago|reply
[+] [-] r3bl|10 years ago|reply
[+] [-] unknown|10 years ago|reply
[deleted]
[+] [-] jMyles|10 years ago|reply
You and I have different definitions.
[+] [-] Khao|10 years ago|reply
[+] [-] ocdtrekkie|10 years ago|reply
[+] [-] collyw|10 years ago|reply