No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

text.py 257B

12345678910
  1. # -*- coding: utf-8 -*-
  2. from ..data_field import DataField
  3. class DataHandler(DataField):
  4. help = 'A text field (big string)'
  5. base_type = 'text'
  6. def __init__(self, **kwargs):
  7. super(self.__class__, self).__init__(ftype='text', **kwargs)