Thread: Python 2.5
View Single Post
Old Sep 25th, 2006, 9:11 AM   #3
sykkn
Hobbyist Programmer
 
Join Date: Apr 2004
Location: Texas
Posts: 106
Rep Power: 5 sykkn is on a distinguished road
I like that they combined try:except:else and try:finally .... no more

try:
  try:
    someAction()
  except:
    someOtherAction()
finally:
  someFinalAction()
__________________
[ [ SykkN alloc ] initWithThePowerTo: destroyYouAll ];
/* Don't make me use it! */
sykkn is offline   Reply With Quote