本文整理汇总了Python中iris.Future类的典型用法代码示例。如果您正苦于以下问题:Python Future类的具体用法?Python Future怎么用?Python Future使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Future类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_valid_clip_latitudes
def test_valid_clip_latitudes(self):
future = Future()
new_value = not future.clip_latitudes
msg = "'Future' property 'clip_latitudes' is deprecated"
with self.assertWarnsRegexp(msg):
future.clip_latitudes = new_value
self.assertEqual(future.clip_latitudes, new_value)
示例2: test_invalid_arg
def test_invalid_arg(self):
future = Future()
with self.assertRaises(AttributeError):
with future.context(this_does_not_exist=True):
# Don't need to do anything here... the context manager
# will (assuming it's working!) have already raised the
# exception we're looking for.
pass
示例3: test_no_args
def test_no_args(self):
future = Future(cell_datetime_objects=False)
self.assertFalse(future.cell_datetime_objects)
with future.context():
self.assertFalse(future.cell_datetime_objects)
future.cell_datetime_objects = True
self.assertTrue(future.cell_datetime_objects)
self.assertFalse(future.cell_datetime_objects)
示例4: test_cell_datetime_objects
def test_cell_datetime_objects(self):
future = Future()
new_value = not future.cell_datetime_objects
with warnings.catch_warnings(record=True) as warn:
warnings.simplefilter('always')
future.cell_datetime_objects = new_value
self.assertEqual(future.cell_datetime_objects, new_value)
exp_wmsg = "'Future' property 'cell_datetime_objects' is deprecated"
six.assertRegex(self, str(warn[0]), exp_wmsg)
示例5: test_with_arg
def test_with_arg(self):
# Catch the deprecation when explicitly setting `cell_datetime_objects`
# as the test is still useful even though the Future property is
# deprecated.
with warnings.catch_warnings():
warnings.simplefilter('ignore')
future = Future(cell_datetime_objects=False)
self.assertFalse(future.cell_datetime_objects)
with future.context(cell_datetime_objects=True):
self.assertTrue(future.cell_datetime_objects)
self.assertFalse(future.cell_datetime_objects)
示例6: test_exception
def test_exception(self):
# Check that an interrupted context block restores the initial state.
class LocalTestException(Exception):
pass
future = Future(cell_datetime_objects=False)
try:
with future.context(cell_datetime_objects=True):
raise LocalTestException()
except LocalTestException:
pass
self.assertEqual(future.cell_datetime_objects, False)
示例7: test_exception
def test_exception(self):
# Check that an interrupted context block restores the initial state.
class LocalTestException(Exception):
pass
# Catch the deprecation when explicitly setting `cell_datetime_objects`
# as the test is still useful even though the Future property is
# deprecated.
with warnings.catch_warnings():
warnings.simplefilter('ignore')
future = Future(cell_datetime_objects=False)
try:
with future.context(cell_datetime_objects=True):
raise LocalTestException()
except LocalTestException:
pass
self.assertEqual(future.cell_datetime_objects, False)
示例8: test_invalid_attribute
def test_invalid_attribute(self):
future = Future()
with self.assertRaises(AttributeError):
future.numberwang = 7
示例9: test_valid_clip_latitudes
def test_valid_clip_latitudes(self):
future = Future()
new_value = not future.clip_latitudes
future.clip_latitudes = new_value
self.assertEqual(future.clip_latitudes, new_value)
示例10: test_valid_strict_grib_load
def test_valid_strict_grib_load(self):
future = Future()
new_value = not future.strict_grib_load
future.strict_grib_load = new_value
self.assertEqual(future.strict_grib_load, new_value)
示例11: test_valid_cell_datetime_objects
def test_valid_cell_datetime_objects(self):
future = Future()
new_value = not future.cell_datetime_objects
future.cell_datetime_objects = new_value
self.assertEqual(future.cell_datetime_objects, new_value)
示例12: test_valid_netcdf_no_unlimited
def test_valid_netcdf_no_unlimited(self):
future = Future()
new_value = not future.netcdf_no_unlimited
future.netcdf_no_unlimited = new_value
self.assertEqual(future.netcdf_no_unlimited, new_value)
示例13: test_invalid_netcdf_no_unlimited
def test_invalid_netcdf_no_unlimited(self):
future = Future()
exp_emsg = \
"'Future' property 'netcdf_no_unlimited' has been deprecated"
with self.assertRaisesRegexp(AttributeError, exp_emsg):
future.netcdf_no_unlimited = False
示例14: test_netcdf_no_unlimited
def test_netcdf_no_unlimited(self):
future = Future()
exp_emsg = "'Future' property 'netcdf_no_unlimited' is deprecated"
with self.assertWarnsRegexp(exp_emsg):
future.netcdf_no_unlimited = True
示例15: test_invalid_netcdf_promote
def test_invalid_netcdf_promote(self):
future = Future()
exp_emsg = "'Future' property 'netcdf_promote' has been deprecated"
with self.assertRaisesRegexp(AttributeError, exp_emsg):
future.netcdf_promote = False