# mapping file; specifies how expose & derive filenames should map to classes
# for instance, a line like:
#
#   str.expose:org.python.core.PyString
#
# will map str.expose to org.python.core.PyString.  Many classes will have 2
# lines; one for their expose, and one for their derived class.

BaseException.derived:org.python.core.PyBaseExceptionDerived
array.derived:org.python.core.PyArrayDerived
bool.derived:org.python.core.PyBooleanDerived
classmethod.derived:org.python.core.PyClassMethodDerived
complex.derived:org.python.core.PyComplexDerived
defaultdict.derived:org.python.modules._collections.PyDefaultDictDerived
deque.derived:org.python.modules._collections.PyDequeDerived
dialect.derived:org.python.modules._csv.PyDialectDerived
dict.derived:org.python.core.PyDictionaryDerived
enumerate.derived:org.python.core.PyEnumerateDerived
file.derived:org.python.core.PyFileDerived
float.derived:org.python.core.PyFloatDerived
frozenset.derived:org.python.core.PyFrozenSetDerived
int.derived:org.python.core.PyIntegerDerived
list.derived:org.python.core.PyListDerived
long.derived:org.python.core.PyLongDerived
local.derived:org.python.modules.thread.PyLocalDerived
module.derived:org.python.core.PyModuleDerived
object.derived:org.python.core.PyObjectDerived
partial.derived:org.python.modules._functools.PyPartialDerived
property.derived:org.python.core.PyPropertyDerived
random.derived:org.python.modules.random.PyRandomDerived
set.derived:org.python.core.PySetDerived
slice.derived:org.python.core.PySliceDerived
str.derived:org.python.core.PyStringDerived
super.derived:org.python.core.PySuperDerived
tuple.derived:org.python.core.PyTupleDerived
type.derived:org.python.core.PyTypeDerived
unicode.derived:org.python.core.PyUnicodeDerived
weakref.derived:org.python.modules._weakref.ReferenceTypeDerived
zipimporter.derived:org.python.modules.zipimport.zipimporterDerived
