web2py.2.27.1 is the last version supporting Python 2.7. web2py 3.x only supports Python 3.9+ and it is in limited maintenance mode. We recommend users move on to web2py's successor py4web.. Read more about our transition guide. Read more about our Versioning and Support policy

Docs for IS_NOT_IN_DB

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

Description


<class 'tuple'>


Built-in immutable sequence.

If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable's items.

If the argument is a tuple, the return value is the same object.



Attributes


IS_NOT_IN_DB.__add__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self+value.


IS_NOT_IN_DB.__class__ <class 'type'> extends (<class 'object'>,) belongs to class <class 'type'>

Built-in immutable sequence.

If no argument is given, the constructor returns an empty tuple. If iterable is specified the tuple is initialized from iterable's items.

If the argument is a tuple, the return value is the same object.


IS_NOT_IN_DB.__class_getitem__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

See PEP 585


IS_NOT_IN_DB.__contains__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return key in self.


IS_NOT_IN_DB.__delattr__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Implement delattr(self, name).


IS_NOT_IN_DB.__dir__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Default dir() implementation.


IS_NOT_IN_DB.__doc__ <class 'str'> belongs to class <class 'str'>

str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str

Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.


IS_NOT_IN_DB.__eq__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self==value.


IS_NOT_IN_DB.__format__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Default object formatter.


IS_NOT_IN_DB.__ge__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self>=value.


IS_NOT_IN_DB.__getattribute__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return getattr(self, name).


IS_NOT_IN_DB.__getitem__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self[key].


IS_NOT_IN_DB.__getnewargs__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

IS_NOT_IN_DB.__gt__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self>value.


IS_NOT_IN_DB.__hash__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return hash(self).


IS_NOT_IN_DB.__init__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Initialize self. See help(type(self)) for accurate signature.


IS_NOT_IN_DB.__init_subclass__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

This method is called when a class is subclassed.

The default implementation does nothing. It may be overridden to extend subclasses.


IS_NOT_IN_DB.__iter__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Implement iter(self).


IS_NOT_IN_DB.__le__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self<=value.


IS_NOT_IN_DB.__len__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return len(self).


IS_NOT_IN_DB.__lt__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self<value.


IS_NOT_IN_DB.__mul__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self*value.


IS_NOT_IN_DB.__ne__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return self!=value.


IS_NOT_IN_DB.__new__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Create and return a new object. See help(type) for accurate signature.


IS_NOT_IN_DB.__reduce__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Helper for pickle.


IS_NOT_IN_DB.__reduce_ex__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Helper for pickle.


IS_NOT_IN_DB.__repr__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return repr(self).


IS_NOT_IN_DB.__rmul__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return value*self.


IS_NOT_IN_DB.__setattr__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Implement setattr(self, name, value).


IS_NOT_IN_DB.__sizeof__ <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Size of object in memory, in bytes.


IS_NOT_IN_DB.__str__ <class 'method-wrapper'> belongs to class <class 'method-wrapper'>

Return str(self).


IS_NOT_IN_DB.__subclasshook__ <class 'builtin_function_or_method'> belongs to class <class '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).


IS_NOT_IN_DB.count <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Return number of occurrences of value.


IS_NOT_IN_DB.index <class 'builtin_function_or_method'> belongs to class <class 'builtin_function_or_method'>

Return first index of value.

Raises ValueError if the value is not present.