Editing
Development/Python
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Error handling == Errors are explicit. Never swallowed. Never hidden behind a generic fallback. <syntaxhighlight lang="python"> # Wrong try: result = parse_article(path) except Exception: result = None # Right try: result = parse_article(path) except FileNotFoundError: raise ArticleNotFoundError(article_id=article_id, path=path) from None except etree.XMLSyntaxError as error: raise ArticleParseError(article_id=article_id, detail=str(error)) from error </syntaxhighlight> Custom exception classes inherit from a common base: <syntaxhighlight lang="python"> class DuralexError(Exception): """Base exception for all Dura Lex errors.""" class ArticleNotFoundError(DuralexError): """Raised when a legislation article file does not exist on disk.""" class ArticleParseError(DuralexError): """Raised when a legislation article XML file cannot be parsed.""" class ReferenceResolutionError(DuralexError): """Raised when a legal reference is ambiguous or malformed.""" </syntaxhighlight>
Summary:
Please note that all contributions to Dura Lex Wiki are considered to be released under the Creative Commons Attribution-ShareAlike (see
Dura Lex Wiki:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
Edit source
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
Tools
What links here
Related changes
Page information