File: _constant.py

package info (click to toggle)
python-tabledata 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 1,406; makefile: 69; sh: 5
file content (11 lines) | stat: -rw-r--r-- 154 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
"""
.. codeauthor:: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
"""

import enum


@enum.unique
class PatternMatch(enum.Enum):
    OR = 0
    AND = 1