From 74fe4071962060bc3b1d90c57d2e93192f25549d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rg=20Lehmann?= Date: Tue, 2 Mar 2004 09:18:21 +0000 Subject: [PATCH] uncomment automatic import code again, which was commented out by accident git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@1385 069f4177-920e-0410-937b-c2a4a81bcd90 --- pyx/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyx/__init__.py b/pyx/__init__.py index e1f26578..7deeb6ac 100644 --- a/pyx/__init__.py +++ b/pyx/__init__.py @@ -38,6 +38,6 @@ __all__ = ["attr", "box", "canvas", "color", "connector", "deco", "epsfile", "gr # automatically import main modules into pyx namespace -# for module in __all__: -# __import__(module, globals(), locals(), []) +for module in __all__: + __import__(module, globals(), locals(), []) -- 2.11.4.GIT