From 60d98775a2304141dc4fd8aef494a9e2bfae8285 Mon Sep 17 00:00:00 2001 From: Andrew Straw Date: Thu, 27 Nov 2008 16:24:34 -0800 Subject: python-traits: new recipe; explicitly typed attributes for Python Signed-off-by: Andrew Straw --- .../python/python-traits/fix-import-pyface.diff | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 packages/python/python-traits/fix-import-pyface.diff (limited to 'packages/python/python-traits/fix-import-pyface.diff') diff --git a/packages/python/python-traits/fix-import-pyface.diff b/packages/python/python-traits/fix-import-pyface.diff new file mode 100644 index 0000000000..969a18ef30 --- /dev/null +++ b/packages/python/python-traits/fix-import-pyface.diff @@ -0,0 +1,26 @@ +diff -r -u Traits-3.0.2.orig/enthought/traits/ui/ui_traits.py Traits-3.0.2/enthought/traits/ui/ui_traits.py +--- Traits-3.0.2.orig/enthought/traits/ui/ui_traits.py 2008-09-15 13:15:58.000000000 -0700 ++++ Traits-3.0.2/enthought/traits/ui/ui_traits.py 2008-11-27 14:55:05.000000000 -0800 +@@ -147,8 +147,6 @@ + """ + global image_resource_cache + +- from enthought.pyface.image_resource import ImageResource +- + if not isinstance( value, basestring ): + return value + +@@ -168,7 +166,12 @@ + except: + result = None + else: +- result = ImageResource( value, search_path = [ search_path ] ) ++ try: ++ from enthought.pyface.image_resource import ImageResource ++ except ImportError: ++ result = None ++ else: ++ result = ImageResource( value, search_path = [ search_path ] ) + + image_resource_cache[ key ] = result + -- cgit v1.2.3