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(
49 "comparison with a `str` is deprecated",
50 DeprecationWarning,
51 stacklevel=2,
52 )
53 return self.section == val
54 # This signals to use the normal comparison operator
55 return NotImplemented
57 def __ne__(self, val):
58 if isinstance(val, str): 58 ↛ 66line 58 didn't jump to line 66, because the condition on line 58 was never false
59 warnings.warn(
60 "comparison with a `str` is deprecated",
61 DeprecationWarning,
62 stacklevel=2,
63 )
64 return self.section != val
65 # This signals to use the normal comparison operator
66 return NotImplemented
68 __hash__ = BaseTimestamp.__hash__