Long try blocks can cause risk in code
For one “try” block, count the number of line of code between the “try” keyword and the first “except” keyword.
Example : in the following code, the “try” size is 4 lines:
try: # Yooo ordering = related_admin.get_ordering(request) # following line is empty # back to code if toto : print("toto") return except toto: titi()
Â
Why you should care
The larger the body of the try, the more likely that an exception will be raised by a line of code that you didn’t expect to raise an exception. In those cases, the try/except block hides a real error
Business Impacts
CAST recommendations
References
https://www.tutorialspoint.com/sql/sql-transactions.htm
About CAST and Highlight’s Code Insights
Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.