Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(4) | Derive(0) | Import(0)
src/d/j/django-pgfields-1.4.3/django_pg/utils/datatypes.py django-pgfields(Download)
def append(self, item): item = self.coerce(item) super(CoerciveList, self).append(item) def extend(self, iterable): for item in iterable: self.append(item) def insert(self, index, item): item = self.coerce(item)
src/d/j/django-pgfields-HEAD/django_pg/utils/datatypes.py django-pgfields(Download)
def append(self, item): item = self.coerce(item) super(CoerciveList, self).append(item) def extend(self, iterable): for item in iterable: self.append(item) def insert(self, index, item): item = self.coerce(item)