Adds unicode encoding strings back to python files

This commit is contained in:
Niru Maheswaranathan
2016-10-07 13:17:38 -07:00
parent b4be7b2f14
commit 91275284e0
4 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
Tableprint
@@ -19,7 +20,7 @@ import numpy as np
__all__ = ('table', 'header', 'row', 'hr', 'top', 'bottom',
'banner', 'dataframe', 'humantime', 'styles')
__version__ = '0.5.2'
__version__ = '0.5.3'
# set up table styles
LineStyle = namedtuple('LineStyle', ('begin', 'hline', 'sep', 'end'))

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from tableprint import top, bottom, row
import pytest

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from tableprint import table, banner, dataframe, hr
from io import StringIO

View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from tableprint import humantime, _format_line, LineStyle
import pytest