Python
  Home arrow Python arrow Page 5 - Python 101 (part 8): An Exceptionally ...
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
VeriSign Whitepapers 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
IBM developerWorks
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PYTHON

Python 101 (part 8): An Exceptionally Clever Snake
By: Vikram Vaswani, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 8
    2001-08-23

    Table of Contents:
  • Python 101 (part 8): An Exceptionally Clever Snake
  • Anatomy Of An Exception
  • Trying Harder
  • Different Strokes
  • Passing The Buck
  • Bad Boys
  • Raising The Bar
  • Strong Pythons (And The Exceptions That Love Them)
  • The End Of The Affair

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Python 101 (part 8): An Exceptionally Clever Snake - Passing The Buck


    (Page 5 of 9 )

    If one exception handler is nested within another, Python typically usesthe one closest to where the exception occurs. To illustrate this, considerthe following code snippet:

    #!/usr/bin/python

    # nested_handlers.py

    def popeye(): try: olive() except NameError: print "Error in popeye"

    def olive(): try: print someUnnamedVar except NameError: print "Error in olive"

    try: popeye() except NameError: print "Error in main"
    In this case, there are three exception handlers defined for the same typeof exception. The outermost one is in the main program body, the next iswithin the popeye() function called from the main script, and the third iswithin the olive() function called by popeye().

    When olive() runs, it generates a "NameError" exception, which isimmediately handled by its own "try" block.

    $ nested_handlers.py Error in olive
    However, if olive() didn't have a "try" block, or its "try" block didn'taccount for "NameError" exceptions,

    #!/usr/bin/python

    def popeye(): try: olive() except NameError: print "Error in popeye"

    def olive(): print someUnnamedVar

    try: popeye() except NameError: print "Error in main"
    the exception would be passed up to the previous level, the callingpopeye() function, which would generate

    $ nested_handlers.py Error in popeye
    If popeye()'s exception handler didn't have the ability to handle theexception, the exception would move up even further, to the main body ofthe script,

    #!/usr/bin/python

    def popeye(): try: olive() # this wouldn't handle NameError except IndexError: print "Error in popeye"

    def olive(): print someUnnamedVar

    try: popeye() except NameError: print "Error in main"
    which would result in

    $ nested_handlers.py Error in main
    And if there weren't any handlers capable of resolving the error,

    #!/usr/bin/python

    def popeye(): olive()

    def olive(): print someUnnamedVar

    popeye()
    the exception would be processed by the default handlers, which would killthe script and print a stack trace.

    Traceback (innermost last): File "./test.py", line 9, in ? popeye() File "./test.py", line 4, in popeye olive() File "./test.py", line 7, in olive print someUnnamedVar NameError: someUnnamedVar

    More Python Articles
    More By Vikram Vaswani, (c) Melonfire


     

       

    PYTHON ARTICLES

    - SSH with Twisted
    - Mobile Programming in Python using PyS60: UI...
    - Python: Count on It
    - Python Strings: Spinning Yarns
    - Python: More Fun with Strings
    - Python: Stringing You Along
    - Python Operators
    - Bluetooth Programming in Python: Network Pro...
    - Python Sets
    - Python Conditionals, Lists, Dictionaries, an...
    - Python: Input and Variables
    - Introduction to Python Programming
    - Mobile Programming in Python using PyS60: Ge...
    - Bluetooth Programming using Python
    - Finishing the PyMailGUI Client: User Help To...





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway