Update of /cvsroot/pythoncard/PythonCard/samples/gravity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19204/gravity
Modified Files:
floatgravity.py gravity.py
Log Message:
Removed all of the plain except: clauses I could
Index: floatgravity.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/samples/gravity/floatgravity.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** floatgravity.py 18 Oct 2004 17:55:57 -0000 1.2
--- floatgravity.py 13 Dec 2005 11:13:23 -0000 1.3
***************
*** 2,8 ****
"""
__version__ = "$Revision$"
__date__ = "$Date$"
- """
# KEA 2004-09-25
--- 2,9 ----
"""
+ Conversion of Flash animation to PythonCard.
+ """
__version__ = "$Revision$"
__date__ = "$Date$"
# KEA 2004-09-25
***************
*** 309,313 ****
bmp.SaveFile(path, fileType)
return 1
! except:
return 0
else:
--- 310,314 ----
bmp.SaveFile(path, fileType)
return 1
! except IOError:
return 0
else:
Index: gravity.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/samples/gravity/gravity.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** gravity.py 28 Mar 2005 05:47:00 -0000 1.7
--- gravity.py 13 Dec 2005 11:13:23 -0000 1.8
***************
*** 2,8 ****
"""
__version__ = "$Revision$"
__date__ = "$Date$"
- """
# KEA 2004-09-25
--- 2,9 ----
"""
+ Conversion of Flash animation to PythonCard.
+ """
__version__ = "$Revision$"
__date__ = "$Date$"
# KEA 2004-09-25
***************
*** 290,294 ****
bmp.SaveFile(path, fileType)
return 1
! except:
return 0
else:
--- 291,295 ----
bmp.SaveFile(path, fileType)
return 1
! except IOError:
return 0
else:
|