[Zope-Checkins] SVN: Zope/branches/gsoc-python-2.5/lib/python/AccessControl/ImplC.py - Get rid of a relative import. Python 2.6 compatibility patch, by
Sidnei da Silva
sidnei at enfoldsystems.com
Tue Oct 7 21:14:03 EDT 2008
Log message for revision 91890:
- Get rid of a relative import. Python 2.6 compatibility patch, by
Ranjith Kannikara, GSoC student.
Changed:
U Zope/branches/gsoc-python-2.5/lib/python/AccessControl/ImplC.py
-=-
Modified: Zope/branches/gsoc-python-2.5/lib/python/AccessControl/ImplC.py
===================================================================
--- Zope/branches/gsoc-python-2.5/lib/python/AccessControl/ImplC.py 2008-10-08 00:58:49 UTC (rev 91889)
+++ Zope/branches/gsoc-python-2.5/lib/python/AccessControl/ImplC.py 2008-10-08 01:14:02 UTC (rev 91890)
@@ -27,7 +27,8 @@
del sys.modules[__name__]
-from ImplPython import RestrictedDTML, SecurityManager, ZopeSecurityPolicy
+from AccessControl.ImplPython import RestrictedDTML
+from AccessControl.ImplPython import SecurityManager, ZopeSecurityPolicy
class RestrictedDTML(RestrictedDTMLMixin, RestrictedDTML):
More information about the Zope-Checkins
mailing list