Skip to content

Commit 99745df

Browse files
committed
following commit 79733fb (issue 737: cleanup modules namespaces), updated options.py and __init__.py modules
1 parent 00b8af1 commit 99745df

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

larray/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
from larray.inout.sas import read_sas
3131
from larray.inout.xw_excel import open_excel, Workbook
3232

33+
from larray.util.options import get_options, set_options
34+
3335
from larray.viewer import view, edit, compare
3436

3537
from larray.extra.ipfp import ipfp
@@ -68,6 +70,8 @@
6870
# inout
6971
'from_lists', 'from_string', 'from_frame', 'from_series', 'read_csv', 'read_tsv',
7072
'read_eurostat', 'read_excel', 'read_hdf', 'read_sas', 'open_excel', 'Workbook',
73+
# utils
74+
'get_options', 'set_options',
7175
# viewer
7276
'view', 'edit', 'compare',
7377
# ipfp

larray/util/__init__.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from __future__ import absolute_import, division, print_function
2-
3-
from larray.util.options import *

larray/util/options.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
from __future__ import absolute_import, division, print_function
22

33

4-
__all__ = ['set_options', 'get_options']
5-
6-
74
DISPLAY_PRECISION = 'display_precision'
85
DISPLAY_WIDTH = 'display_width'
96
DISPLAY_MAXLINES = 'display_maxlines'

0 commit comments

Comments
 (0)