All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.python.core.BuiltinDocs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.7.4
Show newest version
//generated by make_pydocs.py

package org.python.core;

public class BuiltinDocs {

    //Docs for 
    public final static String object___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String object___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String object___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String object___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String object___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String object___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String object___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String object___reduce___doc = 
        "helper for pickle";

    public final static String object___reduce_ex___doc = 
        "helper for pickle";

    public final static String object___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String object___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String object___str___doc = 
        "x.__str__() <==> str(x)";

    //Docs for 
    public final static String type___base___doc = 
        "The most base type";

    public final static String type___bases___doc = 
        "tuple() -> an empty tuple\n" + 
        "tuple(sequence) -> tuple initialized from sequence's items\n" + 
        "\n" + 
        "If the argument is a tuple, the return value is the same object.";

    public final static String type___basicsize___doc = 
        "int(x[, base]) -> integer\n" + 
        "\n" + 
        "Convert a string or number to an integer, if possible.  A floating point\n" + 
        "argument will be truncated towards zero (this does not include a string\n" + 
        "representation of a floating point number!)  When converting a string, use\n" + 
        "the optional base.  It is an error to supply a base when converting a\n" + 
        "non-string. If the argument is outside the integer range a long object\n" + 
        "will be returned instead.";

    public final static String type___call___doc = 
        "x.__call__(...) <==> x(...)";

    public final static String type___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String type___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String type___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String type___dict___doc = 
        "";

    public final static String type___dictoffset___doc = 
        "int(x[, base]) -> integer\n" + 
        "\n" + 
        "Convert a string or number to an integer, if possible.  A floating point\n" + 
        "argument will be truncated towards zero (this does not include a string\n" + 
        "representation of a floating point number!)  When converting a string, use\n" + 
        "the optional base.  It is an error to supply a base when converting a\n" + 
        "non-string. If the argument is outside the integer range a long object\n" + 
        "will be returned instead.";

    public final static String type___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String type___flags___doc = 
        "int(x[, base]) -> integer\n" + 
        "\n" + 
        "Convert a string or number to an integer, if possible.  A floating point\n" + 
        "argument will be truncated towards zero (this does not include a string\n" + 
        "representation of a floating point number!)  When converting a string, use\n" + 
        "the optional base.  It is an error to supply a base when converting a\n" + 
        "non-string. If the argument is outside the integer range a long object\n" + 
        "will be returned instead.";

    public final static String type___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String type___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String type___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String type___itemsize___doc = 
        "int(x[, base]) -> integer\n" + 
        "\n" + 
        "Convert a string or number to an integer, if possible.  A floating point\n" + 
        "argument will be truncated towards zero (this does not include a string\n" + 
        "representation of a floating point number!)  When converting a string, use\n" + 
        "the optional base.  It is an error to supply a base when converting a\n" + 
        "non-string. If the argument is outside the integer range a long object\n" + 
        "will be returned instead.";

    public final static String type___module___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String type___mro___doc = 
        "tuple() -> an empty tuple\n" + 
        "tuple(sequence) -> tuple initialized from sequence's items\n" + 
        "\n" + 
        "If the argument is a tuple, the return value is the same object.";

    public final static String type___name___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String type___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String type___reduce___doc = 
        "helper for pickle";

    public final static String type___reduce_ex___doc = 
        "helper for pickle";

    public final static String type___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String type___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String type___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String type___subclasses___doc = 
        "__subclasses__() -> list of immediate subclasses";

    public final static String type___weakrefoffset___doc = 
        "int(x[, base]) -> integer\n" + 
        "\n" + 
        "Convert a string or number to an integer, if possible.  A floating point\n" + 
        "argument will be truncated towards zero (this does not include a string\n" + 
        "representation of a floating point number!)  When converting a string, use\n" + 
        "the optional base.  It is an error to supply a base when converting a\n" + 
        "non-string. If the argument is outside the integer range a long object\n" + 
        "will be returned instead.";

    public final static String type_mro_doc = 
        "mro() -> list\n" + 
        "return a type's method resolution order";

    //Docs for 
    public final static String unicode___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String unicode___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String unicode___contains___doc = 
        "x.__contains__(y) <==> y in x";

    public final static String unicode___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String unicode___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String unicode___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String unicode___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String unicode___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String unicode___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String unicode___getnewargs___doc = 
        "";

    public final static String unicode___getslice___doc = 
        "x.__getslice__(i, j) <==> x[i:j]\n" + 
        "               \n" + 
        "               Use of negative indices is not supported.";

    public final static String unicode___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String unicode___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String unicode___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String unicode___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String unicode___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String unicode___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String dict___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String dict___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String dict___contains___doc = 
        "D.__contains__(k) -> True if D has a key k, else False";

    public final static String dict___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String dict___delitem___doc = 
        "x.__delitem__(y) <==> del x[y]";

    public final static String dict___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String dict___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String dict___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String dict___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String dict___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String dict___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String dict___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String dict___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String dict___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String dict___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String dict___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String dict___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String list___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String list___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String list___contains___doc = 
        "x.__contains__(y) <==> y in x";

    public final static String list___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String list___delitem___doc = 
        "x.__delitem__(y) <==> del x[y]";

    public final static String list___delslice___doc = 
        "x.__delslice__(i, j) <==> del x[i:j]\n" + 
        "               \n" + 
        "               Use of negative indices is not supported.";

    public final static String list___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String list___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String list___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String list___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String list___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String list___getslice___doc = 
        "x.__getslice__(i, j) <==> x[i:j]\n" + 
        "               \n" + 
        "               Use of negative indices is not supported.";

    public final static String list___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String list___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String list___iadd___doc = 
        "x.__iadd__(y) <==> x+=y";

    public final static String list___imul___doc = 
        "x.__imul__(y) <==> x*=y";

    public final static String list___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String list___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String list___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String list___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String list___lt___doc = 
        "x.__lt__(y) <==> x -1, 0, 1";

    //Docs for 
    public final static String slice___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String slice___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String slice___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String slice___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String slice___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String slice___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String slice___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String slice___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String slice___reduce___doc = 
        "helper for pickle";

    public final static String slice___reduce_ex___doc = 
        "helper for pickle";

    public final static String slice___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String slice___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String slice___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String slice_indices_doc = 
        "S.indices(len) -> (start, stop, stride)\n" + 
        "\n" + 
        "Assuming a sequence of length len, calculate the start and stop\n" + 
        "indices, and the stride length of the extended slice described by\n" + 
        "S. Out of bounds indices are clipped in a manner consistent with the\n" + 
        "handling of normal slices.";

    public final static String slice_start_doc = 
        "";

    public final static String slice_step_doc = 
        "";

    public final static String slice_stop_doc = 
        "";

    //Docs for 
    public final static String super___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String super___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String super___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String super___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String super___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String super___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String super___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String super___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String super___reduce___doc = 
        "helper for pickle";

    public final static String super___reduce_ex___doc = 
        "helper for pickle";

    public final static String super___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String super___self___doc = 
        "the instance invoking super(); may be None";

    public final static String super___self_class___doc = 
        "the type of the instance invoking super(); may be None";

    public final static String super___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String super___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String super___thisclass___doc = 
        "the class invoking super()";

    //Docs for 
    public final static String staticmethod___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String staticmethod___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String staticmethod___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String staticmethod___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String staticmethod___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String staticmethod___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String staticmethod___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String staticmethod___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String staticmethod___reduce___doc = 
        "helper for pickle";

    public final static String staticmethod___reduce_ex___doc = 
        "helper for pickle";

    public final static String staticmethod___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String staticmethod___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String staticmethod___str___doc = 
        "x.__str__() <==> str(x)";

    //Docs for 
    public final static String float___abs___doc = 
        "x.__abs__() <==> abs(x)";

    public final static String float___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String float___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String float___coerce___doc = 
        "x.__coerce__(y) <==> coerce(x, y)";

    public final static String float___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String float___div___doc = 
        "x.__div__(y) <==> x/y";

    public final static String float___divmod___doc = 
        "x.__divmod__(y) <==> divmod(x, y)";

    public final static String float___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String float___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String float___float___doc = 
        "x.__float__() <==> float(x)";

    public final static String float___floordiv___doc = 
        "x.__floordiv__(y) <==> x//y";

    public final static String float___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String float___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String float___getformat___doc = 
        "float.__getformat__(typestr) -> string\n" + 
        "\n" + 
        "You probably don't want to use this function.  It exists mainly to be\n" + 
        "used in Python's test suite.\n" + 
        "\n" + 
        "typestr must be 'double' or 'float'.  This function returns whichever of\n" + 
        "'unknown', 'IEEE, big-endian' or 'IEEE, little-endian' best describes the\n" + 
        "format of floating point numbers used by the C type named by typestr.";

    public final static String float___getnewargs___doc = 
        "";

    public final static String float___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String float___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String float___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String float___int___doc = 
        "x.__int__() <==> int(x)";

    public final static String float___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String float___long___doc = 
        "x.__long__() <==> long(x)";

    public final static String float___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String enumerate___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String enumerate___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String enumerate___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String enumerate___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String enumerate___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String enumerate___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String enumerate___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String enumerate___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String enumerate___reduce___doc = 
        "helper for pickle";

    public final static String enumerate___reduce_ex___doc = 
        "helper for pickle";

    public final static String enumerate___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String enumerate___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String enumerate___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String enumerate_next_doc = 
        "x.next() -> the next value, or raise StopIteration";

    //Docs for 
    public final static String basestring___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String basestring___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String basestring___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String basestring___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String basestring___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String basestring___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String basestring___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String basestring___reduce___doc = 
        "helper for pickle";

    public final static String basestring___reduce_ex___doc = 
        "helper for pickle";

    public final static String basestring___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String basestring___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String basestring___str___doc = 
        "x.__str__() <==> str(x)";

    //Docs for 
    public final static String long___abs___doc = 
        "x.__abs__() <==> abs(x)";

    public final static String long___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String long___and___doc = 
        "x.__and__(y) <==> x&y";

    public final static String long___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String long___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String long___coerce___doc = 
        "x.__coerce__(y) <==> coerce(x, y)";

    public final static String long___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String long___div___doc = 
        "x.__div__(y) <==> x/y";

    public final static String long___divmod___doc = 
        "x.__divmod__(y) <==> divmod(x, y)";

    public final static String long___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String long___float___doc = 
        "x.__float__() <==> float(x)";

    public final static String long___floordiv___doc = 
        "x.__floordiv__(y) <==> x//y";

    public final static String long___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String long___getnewargs___doc = 
        "";

    public final static String long___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String long___hex___doc = 
        "x.__hex__() <==> hex(x)";

    public final static String long___index___doc = 
        "x[y:z] <==> x[y.__index__():z.__index__()]";

    public final static String long___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String long___int___doc = 
        "x.__int__() <==> int(x)";

    public final static String long___invert___doc = 
        "x.__invert__() <==> ~x";

    public final static String long___long___doc = 
        "x.__long__() <==> long(x)";

    public final static String long___lshift___doc = 
        "x.__lshift__(y) <==> x<
    public final static String tuple___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String tuple___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String tuple___contains___doc = 
        "x.__contains__(y) <==> y in x";

    public final static String tuple___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String tuple___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String tuple___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String tuple___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String tuple___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String tuple___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String tuple___getnewargs___doc = 
        "";

    public final static String tuple___getslice___doc = 
        "x.__getslice__(i, j) <==> x[i:j]\n" + 
        "               \n" + 
        "               Use of negative indices is not supported.";

    public final static String tuple___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String tuple___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String tuple___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String tuple___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String tuple___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String tuple___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String tuple___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String str___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String str___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String str___contains___doc = 
        "x.__contains__(y) <==> y in x";

    public final static String str___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String str___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String str___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String str___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String str___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String str___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String str___getnewargs___doc = 
        "";

    public final static String str___getslice___doc = 
        "x.__getslice__(i, j) <==> x[i:j]\n" + 
        "               \n" + 
        "               Use of negative indices is not supported.";

    public final static String str___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String str___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String str___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String str___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String str___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String str___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String property___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String property___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String property___delete___doc = 
        "descr.__delete__(obj)";

    public final static String property___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String property___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String property___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String property___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String property___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String property___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String property___reduce___doc = 
        "helper for pickle";

    public final static String property___reduce_ex___doc = 
        "helper for pickle";

    public final static String property___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String property___set___doc = 
        "descr.__set__(obj, value)";

    public final static String property___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String property___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String property_fdel_doc = 
        "";

    public final static String property_fget_doc = 
        "";

    public final static String property_fset_doc = 
        "";

    //Docs for 
    public final static String int___abs___doc = 
        "x.__abs__() <==> abs(x)";

    public final static String int___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String int___and___doc = 
        "x.__and__(y) <==> x&y";

    public final static String int___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String int___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String int___coerce___doc = 
        "x.__coerce__(y) <==> coerce(x, y)";

    public final static String int___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String int___div___doc = 
        "x.__div__(y) <==> x/y";

    public final static String int___divmod___doc = 
        "x.__divmod__(y) <==> divmod(x, y)";

    public final static String int___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String int___float___doc = 
        "x.__float__() <==> float(x)";

    public final static String int___floordiv___doc = 
        "x.__floordiv__(y) <==> x//y";

    public final static String int___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String int___getnewargs___doc = 
        "";

    public final static String int___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String int___hex___doc = 
        "x.__hex__() <==> hex(x)";

    public final static String int___index___doc = 
        "x[y:z] <==> x[y.__index__():z.__index__()]";

    public final static String int___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String int___int___doc = 
        "x.__int__() <==> int(x)";

    public final static String int___invert___doc = 
        "x.__invert__() <==> ~x";

    public final static String int___long___doc = 
        "x.__long__() <==> long(x)";

    public final static String int___lshift___doc = 
        "x.__lshift__(y) <==> x<
    public final static String xrange___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String xrange___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String xrange___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String xrange___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String xrange___getitem___doc = 
        "x.__getitem__(y) <==> x[y]";

    public final static String xrange___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String xrange___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String xrange___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String xrange___len___doc = 
        "x.__len__() <==> len(x)";

    public final static String xrange___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String xrange___reduce___doc = 
        "helper for pickle";

    public final static String xrange___reduce_ex___doc = 
        "helper for pickle";

    public final static String xrange___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String xrange___reversed___doc = 
        "Returns a reverse iterator.";

    public final static String xrange___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String xrange___str___doc = 
        "x.__str__() <==> str(x)";

    //Docs for 
    public final static String file___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String file___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String file___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String file___enter___doc = 
        "__enter__() -> self.";

    public final static String file___exit___doc = 
        "__exit__(*excinfo) -> None.  Closes the file.";

    public final static String file___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String file___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String file___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String file___iter___doc = 
        "x.__iter__() <==> iter(x)";

    public final static String file___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String file___reduce___doc = 
        "helper for pickle";

    public final static String file___reduce_ex___doc = 
        "helper for pickle";

    public final static String file___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String file___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String file___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String file_close_doc = 
        "close() -> None or (perhaps) an integer.  Close the file.\n" + 
        "\n" + 
        "Sets data attribute .closed to True.  A closed file cannot be used for\n" + 
        "further I/O operations.  close() may be called more than once without\n" + 
        "error.  Some kinds of file objects (for example, opened by popen())\n" + 
        "may return an exit status upon closing.";

    public final static String file_closed_doc = 
        "True if the file is closed";

    public final static String file_encoding_doc = 
        "file encoding";

    public final static String file_fileno_doc = 
        "fileno() -> integer \"file descriptor\".\n" + 
        "\n" + 
        "This is needed for lower-level file interfaces, such os.read().";

    public final static String file_flush_doc = 
        "flush() -> None.  Flush the internal I/O buffer.";

    public final static String file_isatty_doc = 
        "isatty() -> true or false.  True if the file is connected to a tty device.";

    public final static String file_mode_doc = 
        "file mode ('r', 'U', 'w', 'a', possibly with 'b' or '+' added)";

    public final static String file_name_doc = 
        "file name";

    public final static String file_newlines_doc = 
        "end-of-line convention used in this file";

    public final static String file_next_doc = 
        "x.next() -> the next value, or raise StopIteration";

    public final static String file_read_doc = 
        "read([size]) -> read at most size bytes, returned as a string.\n" + 
        "\n" + 
        "If the size argument is negative or omitted, read until EOF is reached.\n" + 
        "Notice that when in non-blocking mode, less data than what was requested\n" + 
        "may be returned, even if no size parameter was given.";

    public final static String file_readinto_doc = 
        "readinto() -> Undocumented.  Don't use this; it may go away.";

    public final static String file_readline_doc = 
        "readline([size]) -> next line from the file, as a string.\n" + 
        "\n" + 
        "Retain newline.  A non-negative size argument limits the maximum\n" + 
        "number of bytes to return (an incomplete line may be returned then).\n" + 
        "Return an empty string at EOF.";

    public final static String file_readlines_doc = 
        "readlines([size]) -> list of strings, each a line from the file.\n" + 
        "\n" + 
        "Call readline() repeatedly and return a list of the lines so read.\n" + 
        "The optional size argument, if given, is an approximate bound on the\n" + 
        "total number of bytes in the lines returned.";

    public final static String file_seek_doc = 
        "seek(offset[, whence]) -> None.  Move to new file position.\n" + 
        "\n" + 
        "Argument offset is a byte count.  Optional argument whence defaults to\n" + 
        "0 (offset from start of file, offset should be >= 0); other values are 1\n" + 
        "(move relative to current position, positive or negative), and 2 (move\n" + 
        "relative to end of file, usually negative, although many platforms allow\n" + 
        "seeking beyond the end of a file).  If the file is opened in text mode,\n" + 
        "only offsets returned by tell() are legal.  Use of other offsets causes\n" + 
        "undefined behavior.\n" + 
        "Note that not all file objects are seekable.";

    public final static String file_softspace_doc = 
        "flag indicating that a space needs to be printed; used by print";

    public final static String file_tell_doc = 
        "tell() -> current file position, an integer (may be a long integer).";

    public final static String file_truncate_doc = 
        "truncate([size]) -> None.  Truncate the file to at most size bytes.\n" + 
        "\n" + 
        "Size defaults to the current file position, as returned by tell().";

    public final static String file_write_doc = 
        "write(str) -> None.  Write string str to file.\n" + 
        "\n" + 
        "Note that due to buffering, flush() or close() may be needed before\n" + 
        "the file on disk reflects the data written.";

    public final static String file_writelines_doc = 
        "writelines(sequence_of_strings) -> None.  Write the strings to the file.\n" + 
        "\n" + 
        "Note that newlines are not added.  The sequence can be any iterable object\n" + 
        "producing strings. This is equivalent to calling write() for each string.";

    public final static String file_xreadlines_doc = 
        "xreadlines() -> returns self.\n" + 
        "\n" + 
        "For backward compatibility. File objects now include the performance\n" + 
        "optimizations previously implemented in the xreadlines module.";

    //Docs for 
    public final static String complex___abs___doc = 
        "x.__abs__() <==> abs(x)";

    public final static String complex___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String complex___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String complex___coerce___doc = 
        "x.__coerce__(y) <==> coerce(x, y)";

    public final static String complex___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String complex___div___doc = 
        "x.__div__(y) <==> x/y";

    public final static String complex___divmod___doc = 
        "x.__divmod__(y) <==> divmod(x, y)";

    public final static String complex___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String complex___eq___doc = 
        "x.__eq__(y) <==> x==y";

    public final static String complex___float___doc = 
        "x.__float__() <==> float(x)";

    public final static String complex___floordiv___doc = 
        "x.__floordiv__(y) <==> x//y";

    public final static String complex___ge___doc = 
        "x.__ge__(y) <==> x>=y";

    public final static String complex___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String complex___getnewargs___doc = 
        "";

    public final static String complex___gt___doc = 
        "x.__gt__(y) <==> x>y";

    public final static String complex___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String complex___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String complex___int___doc = 
        "x.__int__() <==> int(x)";

    public final static String complex___le___doc = 
        "x.__le__(y) <==> x<=y";

    public final static String complex___long___doc = 
        "x.__long__() <==> long(x)";

    public final static String complex___lt___doc = 
        "x.__lt__(y) <==> x
    public final static String bool___abs___doc = 
        "x.__abs__() <==> abs(x)";

    public final static String bool___add___doc = 
        "x.__add__(y) <==> x+y";

    public final static String bool___and___doc = 
        "x.__and__(y) <==> x&y";

    public final static String bool___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String bool___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String bool___coerce___doc = 
        "x.__coerce__(y) <==> coerce(x, y)";

    public final static String bool___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String bool___div___doc = 
        "x.__div__(y) <==> x/y";

    public final static String bool___divmod___doc = 
        "x.__divmod__(y) <==> divmod(x, y)";

    public final static String bool___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String bool___float___doc = 
        "x.__float__() <==> float(x)";

    public final static String bool___floordiv___doc = 
        "x.__floordiv__(y) <==> x//y";

    public final static String bool___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String bool___getnewargs___doc = 
        "";

    public final static String bool___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String bool___hex___doc = 
        "x.__hex__() <==> hex(x)";

    public final static String bool___index___doc = 
        "x[y:z] <==> x[y.__index__():z.__index__()]";

    public final static String bool___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String bool___int___doc = 
        "x.__int__() <==> int(x)";

    public final static String bool___invert___doc = 
        "x.__invert__() <==> ~x";

    public final static String bool___long___doc = 
        "x.__long__() <==> long(x)";

    public final static String bool___lshift___doc = 
        "x.__lshift__(y) <==> x<
    public final static String classmethod___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String classmethod___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String classmethod___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String classmethod___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String classmethod___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String classmethod___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String classmethod___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String classmethod___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String classmethod___reduce___doc = 
        "helper for pickle";

    public final static String classmethod___reduce_ex___doc = 
        "helper for pickle";

    public final static String classmethod___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String classmethod___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String classmethod___str___doc = 
        "x.__str__() <==> str(x)";

    //Docs for 
    public final static String function___call___doc = 
        "x.__call__(...) <==> x(...)";

    public final static String function___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String function___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String function___dict___doc = 
        "";

    public final static String function___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String function___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String function___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String function___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String function___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String function___module___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String function___name___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String function___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String function___reduce___doc = 
        "helper for pickle";

    public final static String function___reduce_ex___doc = 
        "helper for pickle";

    public final static String function___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String function___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String function___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String function_func_closure_doc = 
        "";

    public final static String function_func_code_doc = 
        "";

    public final static String function_func_defaults_doc = 
        "";

    public final static String function_func_dict_doc = 
        "";

    public final static String function_func_doc_doc = 
        "";

    public final static String function_func_globals_doc = 
        "";

    public final static String function_func_name_doc = 
        "";

    //Docs for 
    public final static String instancemethod___call___doc = 
        "x.__call__(...) <==> x(...)";

    public final static String instancemethod___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String instancemethod___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String instancemethod___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String instancemethod___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String instancemethod___get___doc = 
        "descr.__get__(obj[, type]) -> value";

    public final static String instancemethod___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String instancemethod___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String instancemethod___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String instancemethod___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String instancemethod___reduce___doc = 
        "helper for pickle";

    public final static String instancemethod___reduce_ex___doc = 
        "helper for pickle";

    public final static String instancemethod___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String instancemethod___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String instancemethod___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String instancemethod_im_class_doc = 
        "the class associated with a method";

    public final static String instancemethod_im_func_doc = 
        "the function (or other callable) implementing a method";

    public final static String instancemethod_im_self_doc = 
        "the instance to which a method is bound; None for unbound methods";

    //Docs for 
    public final static String code___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String code___cmp___doc = 
        "x.__cmp__(y) <==> cmp(x,y)";

    public final static String code___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String code___doc___doc = 
        "str(object) -> string\n" + 
        "\n" + 
        "Return a nice string representation of the object.\n" + 
        "If the argument is a string, the return value is the same object.";

    public final static String code___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String code___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String code___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String code___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String code___reduce___doc = 
        "helper for pickle";

    public final static String code___reduce_ex___doc = 
        "helper for pickle";

    public final static String code___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String code___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String code___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String code_co_argcount_doc = 
        "";

    public final static String code_co_cellvars_doc = 
        "";

    public final static String code_co_code_doc = 
        "";

    public final static String code_co_consts_doc = 
        "";

    public final static String code_co_filename_doc = 
        "";

    public final static String code_co_firstlineno_doc = 
        "";

    public final static String code_co_flags_doc = 
        "";

    public final static String code_co_freevars_doc = 
        "";

    public final static String code_co_lnotab_doc = 
        "";

    public final static String code_co_name_doc = 
        "";

    public final static String code_co_names_doc = 
        "";

    public final static String code_co_nlocals_doc = 
        "";

    public final static String code_co_stacksize_doc = 
        "";

    public final static String code_co_varnames_doc = 
        "";

    //Docs for 
    public final static String frame___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String frame___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String frame___doc___doc = 
        "";

    public final static String frame___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String frame___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String frame___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String frame___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String frame___reduce___doc = 
        "helper for pickle";

    public final static String frame___reduce_ex___doc = 
        "helper for pickle";

    public final static String frame___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String frame___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String frame___str___doc = 
        "x.__str__() <==> str(x)";

    public final static String frame_f_back_doc = 
        "";

    public final static String frame_f_builtins_doc = 
        "";

    public final static String frame_f_code_doc = 
        "";

    public final static String frame_f_exc_traceback_doc = 
        "";

    public final static String frame_f_exc_type_doc = 
        "";

    public final static String frame_f_exc_value_doc = 
        "";

    public final static String frame_f_globals_doc = 
        "";

    public final static String frame_f_lasti_doc = 
        "";

    public final static String frame_f_lineno_doc = 
        "";

    public final static String frame_f_locals_doc = 
        "";

    public final static String frame_f_restricted_doc = 
        "";

    public final static String frame_f_trace_doc = 
        "";

    //Docs for 
    public final static String traceback___class___doc = 
        "type(object) -> the object's type\n" + 
        "type(name, bases, dict) -> a new type";

    public final static String traceback___delattr___doc = 
        "x.__delattr__('name') <==> del x.name";

    public final static String traceback___doc___doc = 
        "";

    public final static String traceback___getattribute___doc = 
        "x.__getattribute__('name') <==> x.name";

    public final static String traceback___hash___doc = 
        "x.__hash__() <==> hash(x)";

    public final static String traceback___init___doc = 
        "x.__init__(...) initializes x; see x.__class__.__doc__ for signature";

    public final static String traceback___new___doc = 
        "T.__new__(S, ...) -> a new object with type S, a subtype of T";

    public final static String traceback___reduce___doc = 
        "helper for pickle";

    public final static String traceback___reduce_ex___doc = 
        "helper for pickle";

    public final static String traceback___repr___doc = 
        "x.__repr__() <==> repr(x)";

    public final static String traceback___setattr___doc = 
        "x.__setattr__('name', value) <==> x.name = value";

    public final static String traceback___str___doc = 
        "x.__str__() <==> str(x)";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy