当前位置: 首页>>代码示例>>Python>>正文


Python strategies.datetimes方法代码示例

本文整理汇总了Python中hypothesis.strategies.datetimes方法的典型用法代码示例。如果您正苦于以下问题:Python strategies.datetimes方法的具体用法?Python strategies.datetimes怎么用?Python strategies.datetimes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在hypothesis.strategies的用法示例。


在下文中一共展示了strategies.datetimes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: equatorial_orbits

# 需要导入模块: from hypothesis import strategies [as 别名]
# 或者: from hypothesis.strategies import datetimes [as 别名]
def equatorial_orbits(
    draw,
    sma=floats(R_E_KM, 42000),
    ecc=floats(0, 1, exclude_max=True),
    argp=floats(0, 360),
    ta=floats(0, 360),
    epoch=datetimes(),
):
    return KeplerianPredictor(
        draw(sma), draw(ecc), 0, 0, draw(argp), draw(ta), draw(epoch),
    ) 
开发者ID:satellogic,项目名称:orbit-predictor,代码行数:13,代码来源:test_predictors.py

示例2: panicing_certs_fixture

# 需要导入模块: from hypothesis import strategies [as 别名]
# 或者: from hypothesis.strategies import datetimes [as 别名]
def panicing_certs_fixture(draw):
    now = draw(datetimes(
        min_value=datetime(1971, 1, 1), max_value=datetime(2030, 1, 1)))
    panic = timedelta(seconds=draw(
        s.integers(min_value=60, max_value=60 * 60 * 24)))
    certs = dict(
        draw(
            s.lists(
                panicing_cert(now, panic),
                min_size=1,
                max_size=5,
                unique_by=lambda i: i[0])))
    return AcmeFixture(now=now, panic_interval=panic, certs=certs) 
开发者ID:twisted,项目名称:txacme,代码行数:15,代码来源:test_service.py

示例3: primitives

# 需要导入模块: from hypothesis import strategies [as 别名]
# 或者: from hypothesis.strategies import datetimes [as 别名]
def primitives():
    return (
        st.integers() |
        st.floats(allow_nan=False) |
        st.text() |
        st.binary() |
        st.datetimes(timezones=timezones() | st.none()) |
        st.dates() |
        st.times(timezones=timezones() | st.none()) |
        st.timedeltas() |
        st.booleans() |
        st.none()
    ) 
开发者ID:tommikaikkonen,项目名称:prettyprinter,代码行数:15,代码来源:test_prettyprinter.py


注:本文中的hypothesis.strategies.datetimes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。