1# This program is free software; you can redistribute it and/or modify
2# it under the terms of the GNU General Public License as published by
3# the Free Software Foundation; either version 2 of the License, or
4# (at your option) any later version.
6# This program is distributed in the hope that it will be useful,
7# but WITHOUT ANY WARRANTY; without even the implied warranty of
8# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9# GNU General Public License for more details.
11# You should have received a copy of the GNU General Public License
12# along with this program; if not, write to the Free Software
13# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15################################################################################
17import warnings
19from sqlalchemy import Column, Integer, Text
20from sqlalchemy.schema import Index
22from .base import BaseTimestamp
25class Section(BaseTimestamp):
26 __tablename__ = 'section'
28 section_id = Column('id', Integer, primary_key=True)
29 section = Column(Text, nullable=False)
31 # indexes where not created as constraints, need to do as well
32 __table_args__ = (Index('section_section_key', 'section', unique=True), )
34 def __init__(self, section=None):
35 self.section = section
37 def __str__(self):
38 return self.section
40 def __repr__(self):
41 return '<{} {}>'.format(
42 self.__class__.__name__,
43 self.section,
44 )
46 def __eq__(self, val):
47 if isinstance(val, str):
48 warnings.warn("comparison with a `str` is deprecated", DeprecationWarning, stacklevel=2)
49 return (self.section == val)
50 # This signals to use the normal comparison operator
51 return NotImplemented
53 def __ne__(self, val):
54 if isinstance(val, str): 54 ↛ 58line 54 didn't jump to line 58, because the condition on line 54 was never false
55 warnings.warn("comparison with a `str` is deprecated", DeprecationWarning, stacklevel=2)
56 return (self.section != val)
57 # This signals to use the normal comparison operator
58 return NotImplemented
60 __hash__ = BaseTimestamp.__hash__