[Zope3-checkins] CVS: Zope3/src/zope/app/onlinehelp - __init__.py:1.3
Steve Alexander
steve@cat-box.net
Mon, 24 Mar 2003 08:45:34 -0500
Update of /cvs-repository/Zope3/src/zope/app/onlinehelp
In directory cvs.zope.org:/tmp/cvs-serv10376/src/zope/app/onlinehelp
Modified Files:
__init__.py
Log Message:
Made imports come from the modules that they are supposed to come from.
I wish Python had a way of saying "This name isn't to be exported from
this module."
I suppose a helper-function that dels all but certain names from a module
would do the job.
=== Zope3/src/zope/app/onlinehelp/__init__.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/onlinehelp/__init__.py:1.2 Mon Mar 3 18:16:10 2003
+++ Zope3/src/zope/app/onlinehelp/__init__.py Mon Mar 24 08:45:34 2003
@@ -20,8 +20,9 @@
"""
import os
from zope.app.container.sample import SampleContainer
-from zope.app.traversing import \
- traverse, getParent, objectName, IContainmentRoot, Traverser
+from zope.app.traversing import traverse, getParent, objectName
+from zope.app.interfaces.traversing import IContainmentRoot
+from zope.app.traversing.adapters import Traverser
import zope.app
from zope.proxy.context import ContextWrapper