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


Python SortedDict._check方法代码示例

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


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

示例1: test_stress

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_stress(repeat=1000):
    sdict = SortedDict((val, -val) for val in range(1000))

    for rpt in range(repeat):
        action = random.choice(actions)
        action(sdict)

        try:
            sdict._check()
        except AssertionError:
            print(action)
            raise

        start_len = len(sdict)

        while len(sdict) < 500:
            key = random.randrange(0, 2000)
            sdict[key] = -key

        while len(sdict) > 2000:
            key = random.randrange(0, 2000)
            if key in sdict:
                del sdict[key]

        if start_len != len(sdict):
            sdict._check()
开发者ID:Muon,项目名称:sorted_containers,代码行数:28,代码来源:test_stress_sorteddict.py

示例2: test_setitem

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_setitem():
    temp = SortedDict()

    for pos, key in enumerate(string.ascii_lowercase):
        temp[key] = pos
        temp._check()

    assert len(temp) == 26

    for pos, key in enumerate(string.ascii_lowercase):
        temp[key] = pos
        temp._check()

    assert len(temp) == 26
开发者ID:danbornside,项目名称:sorted_containers,代码行数:16,代码来源:test_coverage_sorteddict.py

示例3: test_init

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init():
    sdict = SortedDict()
    sdict._check()

    sdict = SortedDict(load=17)
    sdict._check()

    sdict = SortedDict((val, -val) for val in range(10000))
    sdict._check()
    assert all(key == -val for key, val in sdict.iteritems())

    sdict.clear()
    sdict._check()
    assert len(sdict) == 0

    sdict = SortedDict.fromkeys(range(1000), None)
    assert all(sdict[key] == None for key in range(1000))
开发者ID:Muon,项目名称:sorted_containers,代码行数:19,代码来源:test_stress_sorteddict.py

示例4: test_delitem

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_delitem():
    mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)]
    temp = SortedDict(mapping)
    del temp['a']
    temp._check()
开发者ID:danbornside,项目名称:sorted_containers,代码行数:7,代码来源:test_coverage_sorteddict.py

示例5: test_init_kwargs

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init_kwargs():
    temp = SortedDict(a=1, b=2)
    assert len(temp) == 2
    assert temp['a'] == 1
    assert temp['b'] == 2
    temp._check()
开发者ID:danbornside,项目名称:sorted_containers,代码行数:8,代码来源:test_coverage_sorteddict.py

示例6: test_init_args

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init_args():
    temp = SortedDict([('a', 1), ('b', 2)])
    assert len(temp) == 2
    assert temp['a'] == 1
    assert temp['b'] == 2
    temp._check()
开发者ID:danbornside,项目名称:sorted_containers,代码行数:8,代码来源:test_coverage_sorteddict.py

示例7: test_init

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init():
    temp = SortedDict()
    temp._check()
开发者ID:danbornside,项目名称:sorted_containers,代码行数:5,代码来源:test_coverage_sorteddict.py

示例8: test_init_key

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init_key():
    temp = SortedDict(negate)
    assert temp.key == negate
    temp._check()
开发者ID:grantjenks,项目名称:sorted_containers,代码行数:6,代码来源:test_coverage_sorteddict.py

示例9: test_init

# 需要导入模块: from sortedcontainers import SortedDict [as 别名]
# 或者: from sortedcontainers.SortedDict import _check [as 别名]
def test_init():
    temp = SortedDict()
    assert temp.key is None
    temp._check()
开发者ID:grantjenks,项目名称:sorted_containers,代码行数:6,代码来源:test_coverage_sorteddict.py


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