Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/7 interval initialization #8

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

adarshk7
Copy link
Contributor

@adarshk7 adarshk7 commented Feb 9, 2014

Add support for interval initialization.

eg.
IntInterval(2, 5) == IntInterval((2, 5))
and
IntInterval[2, 5] == IntInterval([2, 5])

@total_ordering
class AbstractInterval(object):
__metaclass__ = ClosedInterval
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does not work on Python 3.3. See http://pythonhosted.org/six/#six.with_metaclass

@kvesteri
Copy link
Owner

The Interval class constructor needs to be changed so that it supports also the following scenarios:

IntInterval(2, 5, inc_upper=True) == IntInterval('(2, 5]']
IntInterval(2, 5, inc_lower=True) == IntInterval('[2, 5)']
IntInterval(2, 5, inc_lower=True, inc_upper=True) == IntInterval[2, 5]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants