示例#1
0
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(bytearray(x), 1,
                                                    max_count))
示例#2
0
文件: thashsplit.py 项目: jbaber/bup
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(bytearray(x), max_count))
示例#3
0
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(''.join(map(chr, x)),
                                                    max_count))
示例#4
0
def nr_regions(x, max_count=None):
    return list(
        hashsplit._nonresident_page_regions(''.join(map(chr, x)), max_count))