* only bibtex format is supported * all tests except test_repo.py and edit test pass * edit and update commands were not updated * removed --format argument from export, only bibtex is supported.
11 lines
187 B
Python
11 lines
187 B
Python
import dotdot
|
|
from pubs import color
|
|
|
|
def perf_color():
|
|
s = str(range(1000))
|
|
for _ in range(5000000):
|
|
color.dye(s, color.red)
|
|
|
|
if __name__ == '__main__':
|
|
perf_color()
|