01: // Copyright (c) Corporation for National Research Initiatives
02:
03: package org.python.core;
04:
05: /**
06: * A deprecated interface that can be used if a java class want control over
07: * the class dict initialization.
08: *
09: * @deprecated This class is deprecated. See ClassDictInit for a replacement.
10: * @see ClassDictInit
11: */
12:
13: public interface InitModule {
14: public abstract void initModule(PyObject dict);
15: }
|