예제 #1
0
    def __init__(self, *arg, **kw):
        TypeDecorator.__init__(self, *arg, **kw)

        def load_dialect_impl(self, dialect):
            if dialect.name == 'mysql':
                return dialect.type_descriptor(
                    sqlalchemy.dialects.mysql.DATETIME())
예제 #2
0
    def __init__(self):
        """
        Initialize.
        """

        # base
        TypeDecorator.__init__(self)
예제 #3
0
    def __init__(self, mutable = True):
        """
        Initialize.
        """

        TypeDecorator.__init__(self)

        self._mutable = mutable
예제 #4
0
 def __init__(self,
              schema=None,
              post_load=None,
              pre_dump=None,
              *args,
              **kwargs):
     TypeDecorator.__init__(self, *args, **kwargs)
     self.schema = schema
     self.post_load = post_load
     self.pre_dump = pre_dump
예제 #5
0
    def __init__(self, item_type, mutable = True):
        """
        Initialize.
        """

        # base
        TypeDecorator.__init__(self)

        # members
        self.item_type = item_type
        self._mutable = mutable
예제 #6
0
파일: types.py 프로젝트: magfest/ubersystem
 def __init__(self, choices, *, allow_unspecified=False, **kwargs):
     """
     Args:
         choices: an array of tuples, where the first element of each tuple
             is the integer being stored and the second element is a string
             description of the value.
         allow_unspecified: by default, an exception is raised if you try
             to save a row with a value which is not in the choices list
             passed to this class; set this to True if you want to allow
             non-default values.
     """
     self.choices = dict(choices)
     self.allow_unspecified = allow_unspecified
     TypeDecorator.__init__(self, **kwargs)
예제 #7
0
 def __init__(self, choices, *, allow_unspecified=False, **kwargs):
     """
     Args:
         choices: an array of tuples, where the first element of each tuple
             is the integer being stored and the second element is a string
             description of the value.
         allow_unspecified: by default, an exception is raised if you try
             to save a row with a value which is not in the choices list
             passed to this class; set this to True if you want to allow
             non-default values.
     """
     self.choices = dict(choices)
     self.allow_unspecified = allow_unspecified
     TypeDecorator.__init__(self, **kwargs)
예제 #8
0
 def __init__(self):
     TypeDecorator.__init__(self)
예제 #9
0
 def __init__(self, path='', abspath='', *arg, **kw):
     TypeDecorator.__init__(self, *arg, **kw)
     self.path = path
     self.abspath = abspath
예제 #10
0
 def __init__(self):
     TypeDecorator.__init__(self, asdecimal=False)
예제 #11
0
 def __init__(self, *args, **kwargs):
   kwargs['length'] = 100
   TypeDecorator.__init__(self, *args, **kwargs)
예제 #12
0
 def __init__(self, *arg, **kw):
     TypeDecorator.__init__(self, *arg, **kw)
예제 #13
0
파일: guid.py 프로젝트: ned21/aquilon
 def __init__(self):
     TypeDecorator.__init__(self, length=32)
예제 #14
0
 def __init__(self, *arg, **kwargs):
     TypeDecorator.__init__(self, *arg, **kwargs)
     self.delimiter = kwargs.get('delimiter', self.default_delimiter)
예제 #15
0
 def __init__(self, enum):
     self.enum = enum
     TypeDecorator.__init__(self)
     SchemaType.__init__(self)
예제 #16
0
 def __init__(self, scale=2):
     TypeDecorator.__init__(self)
     self.scale = scale
예제 #17
0
	def __init__(*args, **kwargs):
		kwargs['length'] = 10 * 1024 * 1024;
		TypeDecorator.__init__(*args, **kwargs)
예제 #18
0
 def __init__(self, *arg, **kw):
     """Init iLargeBinary type."""
     self.__class__.impl = self.impl
     TypeDecorator.__init__(self, *arg, **kw)
예제 #19
0
 def __init__(self, enum, values):
     self.enum = enum
     self.values = values
     TypeDecorator.__init__(self)
 def __init__(self, *args, **kwargs):
     self.enum_class = kwargs.pop('enum_class')
     TypeDecorator.__init__(self, *args, **kwargs)
예제 #21
0
 def load_dialect_impl(self, dialect, **kwargs):
     if dialect.name.startswith('postgres'):
         return dialect.type_descriptor(TEXT)
     return TypeDecorator.load_dialect_impl(self, dialect, **kwargs)
예제 #22
0
파일: types.py 프로젝트: anxolerd/Meowth
 def __init__(self, enum, *args, **kwargs):
     self._enum = enum
     TypeDecorator.__init__(self, *args, **kwargs)
예제 #23
0
 def __init__(self, *arg, **kw):
     TypeDecorator.__init__(self, *arg, **kw)
     self.values = arg[0]
예제 #24
0
파일: types.py 프로젝트: greylock/batteries
    def __init__(self, *args, **kwargs):
        if 'charset' in kwargs:
            del kwargs['charset']

        TypeDecorator.__init__(self, *args, **kwargs)
예제 #25
0
파일: mysql.py 프로젝트: mhellmic/b2share
 def __init__(self, *arg, **kw):
     self.__class__.impl = self.impl;
     TypeDecorator.__init__(self, *arg, **kw)
예제 #26
0
 def __init__(self, *arg, **kw):
     self.__class__.impl = self.impl
     TypeDecorator.__init__(self, *arg, **kw)
예제 #27
0
파일: database.py 프로젝트: Plurk/Solace
 def __init__(self):
     TypeDecorator.__init__(self, 30)
예제 #28
0
파일: types.py 프로젝트: w3bcr4ft/autonomie
 def __init__(self, prefix, *args, **kw):
     TypeDecorator.__init__(self, *args, **kw)
     self.prefix = prefix
예제 #29
0
 def __init__(self):
     TypeDecorator.__init__(self, as_decimal=False)
예제 #30
0
    def __init__(self, pathspec, *args, **kwargs):
        self.resolver = AssetResolver()
        self.pathspec = pathspec

        TypeDecorator.__init__(self, *args, **kwargs)
예제 #31
0
 def __init__(self, wibble=None, optionset='default', *args, **kw):
     TypeDecorator.__init__(self, *args, **kw)
     #super(ElfinderField, self).__init__()
     self.optionset = optionset
     self.wibble = wibble
예제 #32
0
파일: columns.py 프로젝트: Kareeeeem/AMC
 def __init__(self, rounds=None, *args, **kwargs):
     TypeDecorator.__init__(self, *args, **kwargs)
예제 #33
0
파일: guid.py 프로젝트: jrha/aquilon
 def __init__(self):
     TypeDecorator.__init__(self, length=32)
예제 #34
0
파일: enum.py 프로젝트: wguanicedew/iDDS
 def _set_parent_with_dispatch(self, parent):
     TypeDecorator._set_parent_with_dispatch(self, parent)
     SchemaType._set_parent_with_dispatch(self, parent)
예제 #35
0
 def __init__(self, choices, **kwargs):
     self.choices = choices
     self.choices_dict = dict(choices)
     TypeDecorator.__init__(self, **kwargs)
예제 #36
0
파일: types.py 프로젝트: w3bcr4ft/autonomie
 def __init__(self, prefix, *args, **kw):
     TypeDecorator.__init__(self, *args, **kw)
     self.prefix = prefix
예제 #37
0
 def __init__(self, *arg, **kw):
     TypeDecorator.__init__(self, *arg, **kw)
예제 #38
0
파일: mysql.py 프로젝트: dset0x/invenio
 def __init__(self, *arg, **kw):
     """Init iLargeBinary type."""
     self.__class__.impl = self.impl
     TypeDecorator.__init__(self, *arg, **kw)
예제 #39
0
 def __init__(self, *args, **kwargs):
     self.enum_class = kwargs.pop('enum_class')
     TypeDecorator.__init__(self, *args, **kwargs)
예제 #40
0
 def __init__(self, *args, **kwargs):
   assert self.Type is not None
   kwargs.setdefault('length', self.default_max_length)
   TypeDecorator.__init__(self, *args, **kwargs)
예제 #41
0
 def __init__(self, item_type, *args, **kwargs):
     TypeDecorator.__init__(self, *args, **kwargs)
     self.item_type = item_type
예제 #42
0
 def __init__(self, *args, **kwargs):
     assert self.Type is not None
     kwargs.setdefault('length', self.default_max_length)
     TypeDecorator.__init__(self, *args, **kwargs)
예제 #43
0
 def __init__(self):
     self.impl.length = 30
     TypeDecorator.__init__(self, length=self.impl.length)
예제 #44
0
파일: jsonimpl.py 프로젝트: audip/lunr
 def load_dialect_impl(self, dialect, **kwargs):
     if dialect.name.startswith('postgres'):
         return dialect.type_descriptor(TEXT)
     return TypeDecorator.load_dialect_impl(self, dialect, **kwargs)
예제 #45
0
파일: tables.py 프로젝트: zorroroot/ivre
 def __init__(self, item_type, *args, **kwargs):
     TypeDecorator.__init__(self, *args, **kwargs)
     self.item_type = item_type
예제 #46
0
파일: types.py 프로젝트: magfest/ubersystem
 def __init__(self, choices, **kwargs):
     self.choices = choices
     self.choices_dict = dict(choices)
     TypeDecorator.__init__(self, **kwargs)
 def __init__(self, enum, *args, **kw):
     self.enum = enum
     TypeDecorator.__init__(self, *args, **kw)
예제 #48
0
 def __init__(self):
     self.impl.length = 30
     TypeDecorator.__init__(self, length=self.impl.length)
예제 #49
0
 def __init__(self, path='', abspath='', *arg, **kw):
     TypeDecorator.__init__(self, *arg, **kw)
     self.path = path
     self.abspath = abspath
예제 #50
0
 def __init__(self, enum, values):
     self.enum = enum
     self.values = values
     TypeDecorator.__init__(self)