src.templates.mappings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
# 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
ClasspathPyImporter.derived:org.python.core.ClasspathPyImporterDerived
PyBZ2File.derived:org.python.modules.bz2.PyBZ2FileDerived
PyBZ2Compressor.derived:org.python.modules.bz2.PyBZ2CompressorDerived
PyBZ2Decompressor.derived:org.python.modules.bz2.PyBZ2DecompressorDerived
array.derived:org.python.core.PyArrayDerived
bytearray.derived:org.python.core.PyByteArrayDerived
classmethod.derived:org.python.core.PyClassMethodDerived
chain.derived:org.python.modules.itertools.chainDerived
combinationsWithReplacement.derived:org.python.modules.itertools.combinationsWithReplacementDerived
combinations.derived:org.python.modules.itertools.combinationsDerived
compress.derived:org.python.modules.itertools.compressDerived
count.derived:org.python.modules.itertools.countDerived
cycle.derived:org.python.modules.itertools.cycleDerived
dropwhile.derived:org.python.modules.itertools.dropwhileDerived
groupby.derived:org.python.modules.itertools.groupbyDerived
ifilter.derived:org.python.modules.itertools.ifilterDerived
ifilterfalse.derived:org.python.modules.itertools.ifilterfalseDerived
islice.derived:org.python.modules.itertools.isliceDerived
izip.derived:org.python.modules.itertools.izipDerived
izipLongest.derived:org.python.modules.itertools.izipLongestDerived
islice.derived:org.python.modules.itertools.isliceDerived
PyTeeIterator.derived:org.python.modules.itertools.PyTeeIteratorDerived
product.derived:org.python.modules.itertools.productDerived
permutations.derived:org.python.modules.itertools.permutationsDerived
repeat.derived:org.python.modules.itertools.repeatDerived
starmap.derived:org.python.modules.itertools.starmapDerived
takewhile.derived:org.python.modules.itertools.takewhileDerived
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
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
ast_Assert.derived:org.python.antlr.ast.AssertDerived
ast_Assign.derived:org.python.antlr.ast.AssignDerived
ast_Attribute.derived:org.python.antlr.ast.AttributeDerived
ast_AugAssign.derived:org.python.antlr.ast.AugAssignDerived
ast_BinOp.derived:org.python.antlr.ast.BinOpDerived
ast_BoolOp.derived:org.python.antlr.ast.BoolOpDerived
ast_Break.derived:org.python.antlr.ast.BreakDerived
ast_Call.derived:org.python.antlr.ast.CallDerived
ast_ClassDef.derived:org.python.antlr.ast.ClassDefDerived
ast_Compare.derived:org.python.antlr.ast.CompareDerived
ast_Continue.derived:org.python.antlr.ast.ContinueDerived
ast_Delete.derived:org.python.antlr.ast.DeleteDerived
ast_Dict.derived:org.python.antlr.ast.DictDerived
ast_Ellipsis.derived:org.python.antlr.ast.EllipsisDerived
ast_ExceptHandler.derived:org.python.antlr.ast.ExceptHandlerDerived
ast_Exec.derived:org.python.antlr.ast.ExecDerived
ast_Expr.derived:org.python.antlr.ast.ExprDerived
ast_Expression.derived:org.python.antlr.ast.ExpressionDerived
ast_ExtSlice.derived:org.python.antlr.ast.ExtSliceDerived
ast_For.derived:org.python.antlr.ast.ForDerived
ast_FunctionDef.derived:org.python.antlr.ast.FunctionDefDerived
ast_GeneratorExp.derived:org.python.antlr.ast.GeneratorExpDerived
ast_Global.derived:org.python.antlr.ast.GlobalDerived
ast_If.derived:org.python.antlr.ast.IfDerived
ast_IfExp.derived:org.python.antlr.ast.IfExpDerived
ast_Import.derived:org.python.antlr.ast.ImportDerived
ast_ImportFrom.derived:org.python.antlr.ast.ImportFromDerived
ast_Index.derived:org.python.antlr.ast.IndexDerived
ast_Interactive.derived:org.python.antlr.ast.InteractiveDerived
ast_Lambda.derived:org.python.antlr.ast.LambdaDerived
ast_List.derived:org.python.antlr.ast.ListDerived
ast_ListComp.derived:org.python.antlr.ast.ListCompDerived
ast_Module.derived:org.python.antlr.ast.ModuleDerived
ast_Name.derived:org.python.antlr.ast.NameDerived
ast_Num.derived:org.python.antlr.ast.NumDerived
ast_Pass.derived:org.python.antlr.ast.PassDerived
ast_Print.derived:org.python.antlr.ast.PrintDerived
ast_Raise.derived:org.python.antlr.ast.RaiseDerived
ast_Repr.derived:org.python.antlr.ast.ReprDerived
ast_Return.derived:org.python.antlr.ast.ReturnDerived
ast_Slice.derived:org.python.antlr.ast.SliceDerived
ast_Str.derived:org.python.antlr.ast.StrDerived
ast_Subscript.derived:org.python.antlr.ast.SubscriptDerived
ast_Suite.derived:org.python.antlr.ast.SuiteDerived
ast_TryExcept.derived:org.python.antlr.ast.TryExceptDerived
ast_TryFinally.derived:org.python.antlr.ast.TryFinallyDerived
ast_Tuple.derived:org.python.antlr.ast.TupleDerived
ast_UnaryOp.derived:org.python.antlr.ast.UnaryOpDerived
ast_While.derived:org.python.antlr.ast.WhileDerived
ast_With.derived:org.python.antlr.ast.WithDerived
ast_Yield.derived:org.python.antlr.ast.YieldDerived
ast_alias.derived:org.python.antlr.ast.aliasDerived
ast_arguments.derived:org.python.antlr.ast.argumentsDerived
ast_comprehension.derived:org.python.antlr.ast.comprehensionDerived
ast_keyword.derived:org.python.antlr.ast.keywordDerived
op_Add.derived:org.python.antlr.op.AddDerived
op_And.derived:org.python.antlr.op.AndDerived
op_AugLoad.derived:org.python.antlr.op.AugLoadDerived
op_AugStore.derived:org.python.antlr.op.AugStoreDerived
op_BitAnd.derived:org.python.antlr.op.BitAndDerived
op_BitOr.derived:org.python.antlr.op.BitOrDerived
op_BitXor.derived:org.python.antlr.op.BitXorDerived
op_Del.derived:org.python.antlr.op.DelDerived
op_Div.derived:org.python.antlr.op.DivDerived
op_Eq.derived:org.python.antlr.op.EqDerived
op_FloorDiv.derived:org.python.antlr.op.FloorDivDerived
op_Gt.derived:org.python.antlr.op.GtDerived
op_GtE.derived:org.python.antlr.op.GtEDerived
op_In.derived:org.python.antlr.op.InDerived
op_Invert.derived:org.python.antlr.op.InvertDerived
op_Is.derived:org.python.antlr.op.IsDerived
op_IsNot.derived:org.python.antlr.op.IsNotDerived
op_LShift.derived:org.python.antlr.op.LShiftDerived
op_Load.derived:org.python.antlr.op.LoadDerived
op_Lt.derived:org.python.antlr.op.LtDerived
op_LtE.derived:org.python.antlr.op.LtEDerived
op_Mod.derived:org.python.antlr.op.ModDerived
op_Mult.derived:org.python.antlr.op.MultDerived
op_Not.derived:org.python.antlr.op.NotDerived
op_NotEq.derived:org.python.antlr.op.NotEqDerived
op_NotIn.derived:org.python.antlr.op.NotInDerived
op_Or.derived:org.python.antlr.op.OrDerived
op_Param.derived:org.python.antlr.op.ParamDerived
op_Pow.derived:org.python.antlr.op.PowDerived
op_RShift.derived:org.python.antlr.op.RShiftDerived
op_Store.derived:org.python.antlr.op.StoreDerived
op_Sub.derived:org.python.antlr.op.SubDerived
op_UAdd.derived:org.python.antlr.op.UAddDerived
op_USub.derived:org.python.antlr.op.USubDerived
_io._IOBase.derived:org.python.modules._io.PyIOBaseDerived
_io._RawIOBase.derived:org.python.modules._io.PyRawIOBaseDerived
_io.FileIO.derived:org.python.modules._io.PyFileIODerived