Long try blocks can cause risk in code

Production RiskSoftware ResiliencyCode Reliability

Long try blocks can cause risk in code

This code insight computes the integer part of the average size of all “try” block in number of lines of 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()

 

5362

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

Production Risk

CAST recommendations

References

https://www.tutorialspoint.com/sql/sql-transactions.htm

5362

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.

See featuresHow it works