mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-07-29 01:09:57 +03:00
Include unicode_literals
This commit is contained in:
parent
70d34b097f
commit
c4e60ca2a8
|
@ -1,3 +1,5 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
from .models import ModelBase
|
from .models import ModelBase
|
||||||
|
@ -24,11 +26,11 @@ class DatabaseException(Exception):
|
||||||
|
|
||||||
class Database(object):
|
class Database(object):
|
||||||
'''
|
'''
|
||||||
Database instances connect to a specific ClickHouse database for running queries,
|
Database instances connect to a specific ClickHouse database for running queries,
|
||||||
inserting data and other operations.
|
inserting data and other operations.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def __init__(self, db_name, db_url='http://localhost:8123/',
|
def __init__(self, db_name, db_url='http://localhost:8123/',
|
||||||
username=None, password=None, readonly=False, autocreate=True):
|
username=None, password=None, readonly=False, autocreate=True):
|
||||||
'''
|
'''
|
||||||
Initializes a database instance. Unless it's readonly, the database will be
|
Initializes a database instance. Unless it's readonly, the database will be
|
||||||
|
@ -186,7 +188,7 @@ class Database(object):
|
||||||
- `conditions`: optional SQL conditions (contents of the WHERE clause).
|
- `conditions`: optional SQL conditions (contents of the WHERE clause).
|
||||||
- `settings`: query settings to send as HTTP GET parameters
|
- `settings`: query settings to send as HTTP GET parameters
|
||||||
|
|
||||||
The result is a namedtuple containing `objects` (list), `number_of_objects`,
|
The result is a namedtuple containing `objects` (list), `number_of_objects`,
|
||||||
`pages_total`, `number` (of the current page), and `page_size`.
|
`pages_total`, `number` (of the current page), and `page_size`.
|
||||||
'''
|
'''
|
||||||
count = self.count(model_class, conditions)
|
count = self.count(model_class, conditions)
|
||||||
|
@ -214,7 +216,7 @@ class Database(object):
|
||||||
'''
|
'''
|
||||||
Executes schema migrations.
|
Executes schema migrations.
|
||||||
|
|
||||||
- `migrations_package_name` - fully qualified name of the Python package
|
- `migrations_package_name` - fully qualified name of the Python package
|
||||||
containing the migrations.
|
containing the migrations.
|
||||||
- `up_to` - number of the last migration to apply.
|
- `up_to` - number of the last migration to apply.
|
||||||
'''
|
'''
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
from .utils import comma_join
|
from .utils import comma_join
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
from six import string_types, text_type, binary_type
|
from six import string_types, text_type, binary_type
|
||||||
import datetime
|
import datetime
|
||||||
import pytz
|
import pytz
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
|
|
||||||
from six import with_metaclass
|
from six import with_metaclass
|
||||||
|
@ -18,7 +19,7 @@ class ModelBase(type):
|
||||||
ad_hoc_model_cache = {}
|
ad_hoc_model_cache = {}
|
||||||
|
|
||||||
def __new__(cls, name, bases, attrs):
|
def __new__(cls, name, bases, attrs):
|
||||||
new_cls = super(ModelBase, cls).__new__(cls, name, bases, attrs)
|
new_cls = super(ModelBase, cls).__new__(cls, str(name), bases, attrs)
|
||||||
# Collect fields from parent classes
|
# Collect fields from parent classes
|
||||||
base_fields = []
|
base_fields = []
|
||||||
for base in bases:
|
for base in bases:
|
||||||
|
@ -76,7 +77,7 @@ class ModelBase(type):
|
||||||
class Model(with_metaclass(ModelBase)):
|
class Model(with_metaclass(ModelBase)):
|
||||||
'''
|
'''
|
||||||
A base class for ORM models. Each model class represent a ClickHouse table. For example:
|
A base class for ORM models. Each model class represent a ClickHouse table. For example:
|
||||||
|
|
||||||
class CPUStats(Model):
|
class CPUStats(Model):
|
||||||
timestamp = DateTimeField()
|
timestamp = DateTimeField()
|
||||||
cpu_id = UInt16Field()
|
cpu_id = UInt16Field()
|
||||||
|
@ -123,7 +124,7 @@ class Model(with_metaclass(ModelBase)):
|
||||||
|
|
||||||
def set_database(self, db):
|
def set_database(self, db):
|
||||||
'''
|
'''
|
||||||
Sets the `Database` that this model instance belongs to.
|
Sets the `Database` that this model instance belongs to.
|
||||||
This is done automatically when the instance is read from the database or written to it.
|
This is done automatically when the instance is read from the database or written to it.
|
||||||
'''
|
'''
|
||||||
# This can not be imported globally due to circular import
|
# This can not be imported globally due to circular import
|
||||||
|
@ -133,7 +134,7 @@ class Model(with_metaclass(ModelBase)):
|
||||||
|
|
||||||
def get_database(self):
|
def get_database(self):
|
||||||
'''
|
'''
|
||||||
Gets the `Database` that this model instance belongs to.
|
Gets the `Database` that this model instance belongs to.
|
||||||
Returns `None` unless the instance was read from the database or written to it.
|
Returns `None` unless the instance was read from the database or written to it.
|
||||||
'''
|
'''
|
||||||
return self._database
|
return self._database
|
||||||
|
@ -214,7 +215,7 @@ class Model(with_metaclass(ModelBase)):
|
||||||
def to_dict(self, include_readonly=True, field_names=None):
|
def to_dict(self, include_readonly=True, field_names=None):
|
||||||
'''
|
'''
|
||||||
Returns the instance's column values as a dict.
|
Returns the instance's column values as a dict.
|
||||||
|
|
||||||
- `include_readonly`: if false, returns only fields that can be inserted into database.
|
- `include_readonly`: if false, returns only fields that can be inserted into database.
|
||||||
- `field_names`: an iterable of field names to return (optional)
|
- `field_names`: an iterable of field names to return (optional)
|
||||||
'''
|
'''
|
||||||
|
@ -233,7 +234,7 @@ class Model(with_metaclass(ModelBase)):
|
||||||
'''
|
'''
|
||||||
return QuerySet(cls, database)
|
return QuerySet(cls, database)
|
||||||
|
|
||||||
|
|
||||||
class BufferModel(Model):
|
class BufferModel(Model):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import six
|
import six
|
||||||
import pytz
|
import pytz
|
||||||
from copy import copy
|
from copy import copy
|
||||||
|
@ -167,6 +168,7 @@ class Q(object):
|
||||||
return q
|
return q
|
||||||
|
|
||||||
|
|
||||||
|
@six.python_2_unicode_compatible
|
||||||
class QuerySet(object):
|
class QuerySet(object):
|
||||||
"""
|
"""
|
||||||
A queryset is an object that represents a database query using a specific `Model`.
|
A queryset is an object that represents a database query using a specific `Model`.
|
||||||
|
@ -201,7 +203,7 @@ class QuerySet(object):
|
||||||
def __nonzero__(self): # Python 2 compatibility
|
def __nonzero__(self): # Python 2 compatibility
|
||||||
return type(self).__bool__(self)
|
return type(self).__bool__(self)
|
||||||
|
|
||||||
def __unicode__(self):
|
def __str__(self):
|
||||||
return self.as_sql()
|
return self.as_sql()
|
||||||
|
|
||||||
def __getitem__(self, s):
|
def __getitem__(self, s):
|
||||||
|
@ -210,7 +212,7 @@ class QuerySet(object):
|
||||||
assert s >= 0, 'negative indexes are not supported'
|
assert s >= 0, 'negative indexes are not supported'
|
||||||
qs = copy(self)
|
qs = copy(self)
|
||||||
qs._limits = (s, 1)
|
qs._limits = (s, 1)
|
||||||
return next(iter(qs))
|
return six.next(iter(qs))
|
||||||
else:
|
else:
|
||||||
# Slice
|
# Slice
|
||||||
assert s.step in (None, 1), 'step is not supported in slices'
|
assert s.step in (None, 1), 'step is not supported in slices'
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
This file contains system readonly models that can be got from database
|
This file contains system readonly models that can be got from database
|
||||||
https://clickhouse.yandex/reference_en.html#System tables
|
https://clickhouse.yandex/reference_en.html#System tables
|
||||||
"""
|
"""
|
||||||
|
from __future__ import unicode_literals
|
||||||
from six import string_types
|
from six import string_types
|
||||||
|
|
||||||
from .database import Database
|
from .database import Database
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
from six import string_types, binary_type, text_type, PY3
|
from six import string_types, binary_type, text_type, PY3
|
||||||
import codecs
|
import codecs
|
||||||
import re
|
import re
|
||||||
|
@ -43,7 +44,7 @@ def parse_tsv(line):
|
||||||
line = line.decode()
|
line = line.decode()
|
||||||
if line and line[-1] == '\n':
|
if line and line[-1] == '\n':
|
||||||
line = line[:-1]
|
line = line[:-1]
|
||||||
return [unescape(value) for value in line.split('\t')]
|
return [unescape(value) for value in line.split(b'\t')]
|
||||||
|
|
||||||
|
|
||||||
def parse_array(array_string):
|
def parse_array(array_string):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database
|
from infi.clickhouse_orm.database import Database
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
|
||||||
|
@ -65,5 +66,3 @@ class ModelWithAliasFields(Model):
|
||||||
alias_date = DateField(alias='date_field')
|
alias_date = DateField(alias='date_field')
|
||||||
|
|
||||||
engine = MergeTree('date_field', ('date_field',))
|
engine = MergeTree('date_field', ('date_field',))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
|
||||||
|
@ -18,8 +19,8 @@ class ArrayFieldsTest(unittest.TestCase):
|
||||||
|
|
||||||
def test_insert_and_select(self):
|
def test_insert_and_select(self):
|
||||||
instance = ModelWithArrays(
|
instance = ModelWithArrays(
|
||||||
date_field='2016-08-30',
|
date_field='2016-08-30',
|
||||||
arr_str=['goodbye,', 'cruel', 'world', 'special chars: ,"\\\'` \n\t\\[]'],
|
arr_str=['goodbye,', 'cruel', 'world', 'special chars: ,"\\\'` \n\t\\[]'],
|
||||||
arr_date=['2010-01-01']
|
arr_date=['2010-01-01']
|
||||||
)
|
)
|
||||||
self.database.insert([instance])
|
self.database.insert([instance])
|
||||||
|
@ -52,11 +53,11 @@ class ArrayFieldsTest(unittest.TestCase):
|
||||||
self.assertEquals(parse_array("[1, 2, 395, -44]"), ["1", "2", "395", "-44"])
|
self.assertEquals(parse_array("[1, 2, 395, -44]"), ["1", "2", "395", "-44"])
|
||||||
self.assertEquals(parse_array("['big','mouse','','!']"), ["big", "mouse", "", "!"])
|
self.assertEquals(parse_array("['big','mouse','','!']"), ["big", "mouse", "", "!"])
|
||||||
self.assertEquals(parse_array(unescape("['\\r\\n\\0\\t\\b']")), ["\r\n\0\t\b"])
|
self.assertEquals(parse_array(unescape("['\\r\\n\\0\\t\\b']")), ["\r\n\0\t\b"])
|
||||||
for s in ("",
|
for s in ("",
|
||||||
"[",
|
"[",
|
||||||
"]",
|
"]",
|
||||||
"[1, 2",
|
"[1, 2",
|
||||||
"3, 4]",
|
"3, 4]",
|
||||||
"['aaa', 'aaa]"):
|
"['aaa', 'aaa]"):
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(ValueError):
|
||||||
parse_array(s)
|
parse_array(s)
|
||||||
|
@ -70,4 +71,3 @@ class ModelWithArrays(Model):
|
||||||
arr_date = ArrayField(DateField())
|
arr_date = ArrayField(DateField())
|
||||||
|
|
||||||
engine = MergeTree('date_field', ('date_field',))
|
engine = MergeTree('date_field', ('date_field',))
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.models import BufferModel
|
from infi.clickhouse_orm.models import BufferModel
|
||||||
|
@ -23,7 +23,5 @@ class BufferTestCase(TestCaseWithData):
|
||||||
|
|
||||||
|
|
||||||
class PersonBuffer(BufferModel, Person):
|
class PersonBuffer(BufferModel, Person):
|
||||||
|
|
||||||
engine = Buffer(Person)
|
|
||||||
|
|
||||||
|
|
||||||
|
engine = Buffer(Person)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database, DatabaseException
|
from infi.clickhouse_orm.database import Database, DatabaseException
|
||||||
|
@ -99,7 +99,7 @@ class DatabaseTestCase(TestCaseWithData):
|
||||||
page_a = self.database.paginate(Person, 'first_name, last_name', -1, page_size)
|
page_a = self.database.paginate(Person, 'first_name, last_name', -1, page_size)
|
||||||
page_b = self.database.paginate(Person, 'first_name, last_name', page_a.pages_total, page_size)
|
page_b = self.database.paginate(Person, 'first_name, last_name', page_a.pages_total, page_size)
|
||||||
self.assertEquals(page_a[1:], page_b[1:])
|
self.assertEquals(page_a[1:], page_b[1:])
|
||||||
self.assertEquals([obj.to_tsv() for obj in page_a.objects],
|
self.assertEquals([obj.to_tsv() for obj in page_a.objects],
|
||||||
[obj.to_tsv() for obj in page_b.objects])
|
[obj.to_tsv() for obj in page_b.objects])
|
||||||
|
|
||||||
def test_pagination_invalid_page(self):
|
def test_pagination_invalid_page(self):
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database, DatabaseException
|
from infi.clickhouse_orm.database import Database, DatabaseException
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database
|
from infi.clickhouse_orm.database import Database
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database
|
from infi.clickhouse_orm.database import Database
|
||||||
|
@ -37,7 +37,7 @@ class FixedStringFieldsTest(unittest.TestCase):
|
||||||
query = 'SELECT * from $table ORDER BY date_field'
|
query = 'SELECT * from $table ORDER BY date_field'
|
||||||
results = list(self.database.select(query, FixedStringModel))
|
results = list(self.database.select(query, FixedStringModel))
|
||||||
self._assert_sample_data(results)
|
self._assert_sample_data(results)
|
||||||
|
|
||||||
def test_ad_hoc_model(self):
|
def test_ad_hoc_model(self):
|
||||||
self._insert_sample_data()
|
self._insert_sample_data()
|
||||||
query = 'SELECT * from $db.fixedstringmodel ORDER BY date_field'
|
query = 'SELECT * from $db.fixedstringmodel ORDER BY date_field'
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
import datetime
|
import datetime
|
||||||
import pytz
|
import pytz
|
||||||
|
@ -49,4 +50,3 @@ class Model1(ParentModel):
|
||||||
class Model2(ParentModel):
|
class Model2(ParentModel):
|
||||||
|
|
||||||
float_field = Float32Field()
|
float_field = Float32Field()
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
|
||||||
|
@ -65,5 +66,3 @@ class ModelWithMaterializedFields(Model):
|
||||||
mat_date = DateField(materialized=u'toDate(date_time_field)')
|
mat_date = DateField(materialized=u'toDate(date_time_field)')
|
||||||
|
|
||||||
engine = MergeTree('mat_date', ('mat_date',))
|
engine = MergeTree('mat_date', ('mat_date',))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database
|
from infi.clickhouse_orm.database import Database
|
||||||
|
@ -54,11 +55,11 @@ class MigrationsTestCase(unittest.TestCase):
|
||||||
# Altering enum fields
|
# Altering enum fields
|
||||||
self.database.migrate('tests.sample_migrations', 6)
|
self.database.migrate('tests.sample_migrations', 6)
|
||||||
self.assertTrue(self.tableExists(EnumModel1))
|
self.assertTrue(self.tableExists(EnumModel1))
|
||||||
self.assertEquals(self.getTableFields(EnumModel1),
|
self.assertEquals(self.getTableFields(EnumModel1),
|
||||||
[('date', 'Date'), ('f1', "Enum8('dog' = 1, 'cat' = 2, 'cow' = 3)")])
|
[('date', 'Date'), ('f1', "Enum8('dog' = 1, 'cat' = 2, 'cow' = 3)")])
|
||||||
self.database.migrate('tests.sample_migrations', 7)
|
self.database.migrate('tests.sample_migrations', 7)
|
||||||
self.assertTrue(self.tableExists(EnumModel1))
|
self.assertTrue(self.tableExists(EnumModel1))
|
||||||
self.assertEquals(self.getTableFields(EnumModel2),
|
self.assertEquals(self.getTableFields(EnumModel2),
|
||||||
[('date', 'Date'), ('f1', "Enum16('dog' = 1, 'cat' = 2, 'horse' = 3, 'pig' = 4)")])
|
[('date', 'Date'), ('f1', "Enum16('dog' = 1, 'cat' = 2, 'horse' = 3, 'pig' = 4)")])
|
||||||
self.database.migrate('tests.sample_migrations', 8)
|
self.database.migrate('tests.sample_migrations', 8)
|
||||||
self.assertTrue(self.tableExists(MaterializedModel))
|
self.assertTrue(self.tableExists(MaterializedModel))
|
||||||
|
@ -157,4 +158,4 @@ class AliasModel(Model):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def table_name(cls):
|
def table_name(cls):
|
||||||
return 'alias_date'
|
return 'alias_date'
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
import datetime
|
import datetime
|
||||||
import pytz
|
import pytz
|
||||||
|
@ -89,4 +90,3 @@ class SimpleModel(Model):
|
||||||
alias_field = Float32Field(alias='float_field')
|
alias_field = Float32Field(alias='float_field')
|
||||||
|
|
||||||
engine = MergeTree('date_field', ('int_field', 'date_field'))
|
engine = MergeTree('date_field', ('int_field', 'date_field'))
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
import pytz
|
import pytz
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals, print_function
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from infi.clickhouse_orm.database import Database
|
from infi.clickhouse_orm.database import Database
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import six
|
import six
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
from infi.clickhouse_orm.fields import *
|
from infi.clickhouse_orm.fields import *
|
||||||
from datetime import date, datetime
|
from datetime import date, datetime
|
||||||
|
@ -10,7 +11,7 @@ class SimpleFieldsTest(unittest.TestCase):
|
||||||
f = DateTimeField()
|
f = DateTimeField()
|
||||||
epoch = datetime(1970, 1, 1, tzinfo=pytz.utc)
|
epoch = datetime(1970, 1, 1, tzinfo=pytz.utc)
|
||||||
# Valid values
|
# Valid values
|
||||||
for value in (date(1970, 1, 1), datetime(1970, 1, 1), epoch,
|
for value in (date(1970, 1, 1), datetime(1970, 1, 1), epoch,
|
||||||
epoch.astimezone(pytz.timezone('US/Eastern')), epoch.astimezone(pytz.timezone('Asia/Jerusalem')),
|
epoch.astimezone(pytz.timezone('US/Eastern')), epoch.astimezone(pytz.timezone('Asia/Jerusalem')),
|
||||||
'1970-01-01 00:00:00', '1970-01-17 00:00:17', '0000-00-00 00:00:00', 0):
|
'1970-01-01 00:00:00', '1970-01-17 00:00:17', '0000-00-00 00:00:00', 0):
|
||||||
dt = f.to_python(value, pytz.utc)
|
dt = f.to_python(value, pytz.utc)
|
||||||
|
@ -60,4 +61,4 @@ class SimpleFieldsTest(unittest.TestCase):
|
||||||
# Range check
|
# Range check
|
||||||
for value in (-1, 1000):
|
for value in (-1, 1000):
|
||||||
with self.assertRaises(ValueError):
|
with self.assertRaises(ValueError):
|
||||||
f.validate(value)
|
f.validate(value)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
import unittest
|
import unittest
|
||||||
from datetime import date
|
from datetime import date
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in New Issue
Block a user