[Zope3-checkins] CVS: Packages/ZConfig - __init__.py:1.7
Fred L. Drake, Jr.
fred@zope.com
Mon, 13 Jan 2003 12:31:45 -0500
Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv5736
Modified Files:
__init__.py
Log Message:
Remove functions which are no longer part of the documented API. This
functionality is now only available through the ZConfig.Context
module.
=== Packages/ZConfig/__init__.py 1.6 => 1.7 ===
--- Packages/ZConfig/__init__.py:1.6 Mon Jan 6 15:02:56 2003
+++ Packages/ZConfig/__init__.py Mon Jan 13 12:31:42 2003
@@ -20,15 +20,6 @@
from ZConfig.loader import loadSchema, loadSchemaFile
-def loadURL(url):
- import Context
- return Context.Context().loadURL(url)
-
-def loadFile(file, url=None):
- import Context
- return Context.Context().loadFile(file, url)
-
-
class ConfigurationError(Exception):
def __init__(self, msg):
self.message = msg