Main Page | Recent changes | Edit this page | Page history

Printable version | Disclaimers | Privacy policy

Not logged in
Log in | Help
 

Style:Exceptions

From 6.00 reference wiki

Elements of Style for Python Programmers: Main | Names | Variable Declarations | Indentation | Exceptions


Functions should either raise an exception or return the special value None when there is no sensible value for them to return.

For example:

     def factorial(n):
         """n: int
              if n >= 0
                 returns n!
              else returns None""" 

or

     def factorial(n):
         """n: int
              if n >= 0
                 returns n!
              else raises negArg""" 
      

is better than a factorial program that returns -1 when called with a negative number.

Retrieved from "http://slice.csail.mit.edu../../../e/x/c/Style%7EExceptions_bce1.html"

This page has been accessed 30 times. This page was last modified 11:41, 6 February 2006 by 6.00 reference wiki user Asfandyar.


[Main Page]
Main Page
Recent changes

Edit this page
Discuss this page
Page history
What links here
Related changes

Special pages
Bug reports