Docs for Field.__doc__

[ Python Tutorial ] [ Python Libraries ] [ web2py source docs ]

Description


<type 'str'>


str(object='') -> string

Return a nice string representation of the object. If the argument is a string, the return value is the same object.



Attributes


Field.__doc__.__add__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__add__(y) <==> x+y


Field.__doc__.__class__ <type 'type'> extends (<type 'basestring'>,) belongs to class <type 'type'>

str(object='') -> string

Return a nice string representation of the object. If the argument is a string, the return value is the same object.


Field.__doc__.__contains__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__contains__(y) <==> y in x


Field.__doc__.__delattr__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__delattr__('name') <==> del x.name


Field.__doc__.__doc__ <type 'str'> belongs to class <type 'str'>

str(object='') -> string

Return a nice string representation of the object. If the argument is a string, the return value is the same object.


Field.__doc__.__eq__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__eq__(y) <==> x==y


Field.__doc__.__format__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.__format__(format_spec) -> string

Return a formatted version of S as described by format_spec.


Field.__doc__.__ge__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__ge__(y) <==> x>=y


Field.__doc__.__getattribute__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__getattribute__('name') <==> x.name


Field.__doc__.__getitem__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__getitem__(y) <==> x[y]


Field.__doc__.__getnewargs__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

Field.__doc__.__getslice__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.


Field.__doc__.__gt__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__gt__(y) <==> x>y


Field.__doc__.__hash__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__hash__() <==> hash(x)


Field.__doc__.__init__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__init__(...) initializes x; see help(type(x)) for signature


Field.__doc__.__le__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__le__(y) <==> x<=y


Field.__doc__.__len__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__len__() <==> len(x)


Field.__doc__.__lt__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__lt__(y) <==> x<y


Field.__doc__.__mod__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__mod__(y) <==> x%y


Field.__doc__.__mul__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__mul__(n) <==> x*n


Field.__doc__.__ne__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__ne__(y) <==> x!=y


Field.__doc__.__new__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

T.__new__(S, ...) -> a new object with type S, a subtype of T


Field.__doc__.__reduce__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

helper for pickle


Field.__doc__.__reduce_ex__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

helper for pickle


Field.__doc__.__repr__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__repr__() <==> repr(x)


Field.__doc__.__rmod__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__rmod__(y) <==> y%x


Field.__doc__.__rmul__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__rmul__(n) <==> n*x


Field.__doc__.__setattr__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__setattr__('name', value) <==> x.name = value


Field.__doc__.__sizeof__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.__sizeof__() -> size of S in memory, in bytes


Field.__doc__.__str__ <type 'method-wrapper'> belongs to class <type 'method-wrapper'>

x.__str__() <==> str(x)


Field.__doc__.__subclasshook__ <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).


Field.__doc__._formatter_field_name_split <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

Field.__doc__._formatter_parser <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

Field.__doc__.capitalize <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.capitalize() -> string

Return a copy of the string S with only its first character capitalized.


Field.__doc__.center <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.center(width[, fillchar]) -> string

Return S centered in a string of length width. Padding is done using the specified fill character (default is a space)


Field.__doc__.count <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.count(sub[, start[, end]]) -> int

Return the number of non-overlapping occurrences of substring sub in string S[start:end]. Optional arguments start and end are interpreted as in slice notation.


Field.__doc__.decode <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.decode([encoding[,errors]]) -> object

Decodes S using the codec registered for encoding. encoding defaults to the default encoding. errors may be given to set a different error handling scheme. Default is 'strict' meaning that encoding errors raise a UnicodeDecodeError. Other possible values are 'ignore' and 'replace' as well as any other name registered with codecs.register_error that is able to handle UnicodeDecodeErrors.


Field.__doc__.encode <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.encode([encoding[,errors]]) -> object

Encodes S using the codec registered for encoding. encoding defaults to the default encoding. errors may be given to set a different error handling scheme. Default is 'strict' meaning that encoding errors raise a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and 'xmlcharrefreplace' as well as any other name registered with codecs.register_error that is able to handle UnicodeEncodeErrors.


Field.__doc__.endswith <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.endswith(suffix[, start[, end]]) -> bool

Return True if S ends with the specified suffix, False otherwise. With optional start, test S beginning at that position. With optional end, stop comparing S at that position. suffix can also be a tuple of strings to try.


Field.__doc__.expandtabs <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.expandtabs([tabsize]) -> string

Return a copy of S where all tab characters are expanded using spaces. If tabsize is not given, a tab size of 8 characters is assumed.


Field.__doc__.find <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.find(sub [,start [,end]]) -> int

Return the lowest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation.

Return -1 on failure.


Field.__doc__.format <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.format(*args, **kwargs) -> string

Return a formatted version of S, using substitutions from args and kwargs. The substitutions are identified by braces ('{' and '}').


Field.__doc__.index <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.index(sub [,start [,end]]) -> int

Like S.find() but raise ValueError when the substring is not found.


Field.__doc__.isalnum <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.isalnum() -> bool

Return True if all characters in S are alphanumeric and there is at least one character in S, False otherwise.


Field.__doc__.isalpha <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.isalpha() -> bool

Return True if all characters in S are alphabetic and there is at least one character in S, False otherwise.


Field.__doc__.isdigit <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.isdigit() -> bool

Return True if all characters in S are digits and there is at least one character in S, False otherwise.


Field.__doc__.islower <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.islower() -> bool

Return True if all cased characters in S are lowercase and there is at least one cased character in S, False otherwise.


Field.__doc__.isspace <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.isspace() -> bool

Return True if all characters in S are whitespace and there is at least one character in S, False otherwise.


Field.__doc__.istitle <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.istitle() -> bool

Return True if S is a titlecased string and there is at least one character in S, i.e. uppercase characters may only follow uncased characters and lowercase characters only cased ones. Return False otherwise.


Field.__doc__.isupper <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.isupper() -> bool

Return True if all cased characters in S are uppercase and there is at least one cased character in S, False otherwise.


Field.__doc__.join <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.join(iterable) -> string

Return a string which is the concatenation of the strings in the iterable. The separator between elements is S.


Field.__doc__.ljust <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.ljust(width[, fillchar]) -> string

Return S left-justified in a string of length width. Padding is done using the specified fill character (default is a space).


Field.__doc__.lower <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.lower() -> string

Return a copy of the string S converted to lowercase.


Field.__doc__.lstrip <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.lstrip([chars]) -> string or unicode

Return a copy of the string S with leading whitespace removed. If chars is given and not None, remove characters in chars instead. If chars is unicode, S will be converted to unicode before stripping


Field.__doc__.partition <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.partition(sep) -> (head, sep, tail)

Search for the separator sep in S, and return the part before it, the separator itself, and the part after it. If the separator is not found, return S and two empty strings.


Field.__doc__.replace <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.replace(old, new[, count]) -> string

Return a copy of string S with all occurrences of substring old replaced by new. If the optional argument count is given, only the first count occurrences are replaced.


Field.__doc__.rfind <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rfind(sub [,start [,end]]) -> int

Return the highest index in S where substring sub is found, such that sub is contained within S[start:end]. Optional arguments start and end are interpreted as in slice notation.

Return -1 on failure.


Field.__doc__.rindex <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rindex(sub [,start [,end]]) -> int

Like S.rfind() but raise ValueError when the substring is not found.


Field.__doc__.rjust <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rjust(width[, fillchar]) -> string

Return S right-justified in a string of length width. Padding is done using the specified fill character (default is a space)


Field.__doc__.rpartition <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rpartition(sep) -> (head, sep, tail)

Search for the separator sep in S, starting at the end of S, and return the part before it, the separator itself, and the part after it. If the separator is not found, return two empty strings and S.


Field.__doc__.rsplit <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rsplit([sep [,maxsplit]]) -> list of strings

Return a list of the words in the string S, using sep as the delimiter string, starting at the end of the string and working to the front. If maxsplit is given, at most maxsplit splits are done. If sep is not specified or is None, any whitespace string is a separator.


Field.__doc__.rstrip <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.rstrip([chars]) -> string or unicode

Return a copy of the string S with trailing whitespace removed. If chars is given and not None, remove characters in chars instead. If chars is unicode, S will be converted to unicode before stripping


Field.__doc__.split <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.split([sep [,maxsplit]]) -> list of strings

Return a list of the words in the string S, using sep as the delimiter string. If maxsplit is given, at most maxsplit splits are done. If sep is not specified or is None, any whitespace string is a separator and empty strings are removed from the result.


Field.__doc__.splitlines <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.splitlines(keepends=False) -> list of strings

Return a list of the lines in S, breaking at line boundaries. Line breaks are not included in the resulting list unless keepends is given and true.


Field.__doc__.startswith <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.startswith(prefix[, start[, end]]) -> bool

Return True if S starts with the specified prefix, False otherwise. With optional start, test S beginning at that position. With optional end, stop comparing S at that position. prefix can also be a tuple of strings to try.


Field.__doc__.strip <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.strip([chars]) -> string or unicode

Return a copy of the string S with leading and trailing whitespace removed. If chars is given and not None, remove characters in chars instead. If chars is unicode, S will be converted to unicode before stripping


Field.__doc__.swapcase <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.swapcase() -> string

Return a copy of the string S with uppercase characters converted to lowercase and vice versa.


Field.__doc__.title <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.title() -> string

Return a titlecased version of S, i.e. words start with uppercase characters, all remaining cased characters have lowercase.


Field.__doc__.translate <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.translate(table [,deletechars]) -> string

Return a copy of the string S, where all characters occurring in the optional argument deletechars are removed, and the remaining characters have been mapped through the given translation table, which must be a string of length 256 or None. If the table argument is None, no translation is applied and the operation simply removes the characters in deletechars.


Field.__doc__.upper <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.upper() -> string

Return a copy of the string S converted to uppercase.


Field.__doc__.zfill <type 'builtin_function_or_method'> belongs to class <type 'builtin_function_or_method'>

S.zfill(width) -> string

Pad a numeric string S with zeros on the left, to fill a field of the specified width. The string S is never truncated.