>>>>> "SM" == Skip Montanaro <skip@pobox.com> writes: SM> Taking a quick peek at my own code, the only place I see that SM> strings are raised is in code that works with ZServer SM> (e.g. "raise 'redirect'"). ---------------^^^^^^^^^^^^^^^ That's kind of scary Skip! I.e. I belive the following is /not/ guaranteed to work in any version of Python that I'm aware of: try: raise 'foo' except 'foo': print 'foo caught' because 'foo' is not (necessarily) 'foo'. Much better to use: FOOEXC = 'foo' try: raise FOOEXC except FOOEXC: print 'foo caught' -Barry
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4