File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 22from __future__ import absolute_import , division , print_function
33
44from .axis import Axis
5+ from .utils import set_module
56
67import numpy as np
78
89del absolute_import , division , print_function
910
1011
12+ @set_module ("boost_histogram.axis" )
1113class ArrayTuple (tuple ):
1214 __slots__ = ()
1315
@@ -29,6 +31,7 @@ def broadcast(self):
2931 return self .__class__ (np .broadcast_arrays (* self ))
3032
3133
34+ @set_module ("boost_histogram.axis" )
3235class AxesTuple (tuple ):
3336 __slots__ = ()
3437 _MGRIDOPTS = {"sparse" : True , "indexing" : "ij" }
Original file line number Diff line number Diff line change 1010 StrCategory ,
1111 Boolean ,
1212)
13+ from .._internal .axistuple import ArrayTuple , AxesTuple
1314from .._core .axis import options
1415from . import transform
1516
2526 "Axis" ,
2627 "options" ,
2728 "transform" ,
29+ "ArrayTuple" ,
30+ "AxesTuple" ,
2831)
You can’t perform that action at this time.
0 commit comments