File: __init__.py

package info (click to toggle)
python-intervals 0.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: python: 1,499; sh: 11; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 689 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
from .exc import IllegalArgument, IntervalException, RangeBoundsException
from .interval import (
    AbstractInterval,
    canonicalize,
    CharacterInterval,
    DateInterval,
    DateTimeInterval,
    DecimalInterval,
    FloatInterval,
    Interval,
    IntervalFactory,
    IntInterval,
    NumberInterval
)

__all__ = (
    'AbstractInterval',
    'CharacterInterval',
    'canonicalize',
    'DateInterval',
    'DateTimeInterval',
    'DecimalInterval',
    'FloatInterval',
    'Interval',
    'IntervalException',
    'IntervalFactory',
    'IntInterval',
    'IllegalArgument',
    'NumberInterval',
    'RangeBoundsException'
)


__version__ = '0.9.2'