[PyObjC-svn] r2117 - trunk/pyobjc/pyobjc-framework-Quartz/Lib/Quartz

[email protected]
Newsgroups gmane.comp.python.pyobjc.cvs
Message-ID <[email protected]>
Author: ronaldoussoren
Date: Sun Mar 22 12:56:59 2009
New Revision: 2117

Log:
Fix issue where 'from Quartz import *' doesn't import all definitions,
caused by the results of a debugging sessions leaking into the
repository.


Modified:
   trunk/pyobjc/pyobjc-framework-Quartz/Lib/Quartz/__init__.py

Modified: trunk/pyobjc/pyobjc-framework-Quartz/Lib/Quartz/__init__.py
==============================================================================
--- trunk/pyobjc/pyobjc-framework-Quartz/Lib/Quartz/__init__.py	(original)
+++ trunk/pyobjc/pyobjc-framework-Quartz/Lib/Quartz/__init__.py	Sun Mar 22 12:56:59 2009
@@ -2,26 +2,26 @@
 Helper module that makes it easier to import all of Quartz
 """
 
-#try:
-#    from Quartz.CoreGraphics import *
-#except ImportError:
-#    pass
+try:
+    from Quartz.CoreGraphics import *
+except ImportError:
+    pass
 
 try:
     from Quartz.ImageIO import *
 except ImportError:
     pass
 
-#try:
-#    from Quartz.CoreVideo import *
-#except ImportError:
-#    pass
-#
-#try:
-#    from Quartz.QuartzCore import *
-#except ImportError:
-#    pass
-#
+try:
+    from Quartz.CoreVideo import *
+except ImportError:
+    pass
+
+try:
+    from Quartz.QuartzCore import *
+except ImportError:
+    pass
+
 try:
     from Quartz.ImageKit import *
 except ImportError:
@@ -32,7 +32,7 @@
 except ImportError:
     pass
 
-#try:
-#    from Quartz.QuartzFilters import *
-#except ImportError:
-#    pass
+try:
+    from Quartz.QuartzFilters import *
+except ImportError:
+    pass

------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.