python xlutils: formatting_info = True ainda não implementado

Eu tenho um código simples para copiar arquivos com xlutils, xlrd, xlwt (baixei novas bibliotecas de python-excel.org) sem perder a formatação. Eu tenho um erro como abaixo:

from xlwt.Workbook import *
from xlwt.Style import *
from xlrd import open_workbook
from xlutils.copy import copy
import xlrd

style = XFStyle()
rb = open_workbook('file_master.xlsx', formatting_info=True)
wb = copy(rb.get_sheet(0))

new_book = Workbook()
w_sheet = wb.get_sheet(0)
w_sheet.write(6,6)

wb.save('new_file_master.xls')

Erro:

 raise NotImplementedError("formatting_info=True not yet implemented")
NotImplementedError: formatting_info=True not yet implemented

Você poderia, por favor, me ajudar a contornar isso, ou melhor, fazê-lo funcionar?

questionAnswers(1)

yourAnswerToTheQuestion