This was a simple problem I was having earlier. Essentially, solutions like this and this to "ignoring" an exception really don't. Even if they don't crash python anymore, they still stop whatever code was in the initial try clause.
try:
assert False
print "hello"
except AssertionError:
pass
This code will not print "hello", but rather skip over it, going to the pass. My question is, is there an easy way to truly ignore this in Python 2.7? I read about some things going on in 3.4 to make this easier, but I'd rather stay with python 2.7.