コード例 #1
0
def make_workbook_map():
    def _names():
        yield "workbook"
        for c in itertools.count(1):
            yield "workbook_%d" % c

    return dict(list(zip(_names(), xl.workbooks())))
コード例 #2
0
ファイル: shell.py プロジェクト: wenh123/PTVS
def make_workbook_map():
    def _names():
        yield "workbook"
        for c in itertools.count(1):
            yield "workbook_%d" % c

    return dict(zip(_names(), xl.workbooks()))
コード例 #3
0
def ensure_open_workbook():
    if not xl.workbooks():
        xl.Workbook()
    assert xl.workbooks()
コード例 #4
0
ファイル: shell.py プロジェクト: Afelio/PTVS
def ensure_open_workbook():
    if not xl.workbooks():
        xl.Workbook()
    assert xl.workbooks()