Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90383290
__init__.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 04:03
Size
653 B
Mime Type
text/x-python
Expires
Sun, Nov 3, 04:03 (2 d)
Engine
blob
Format
Raw Data
Handle
22064428
Attached To
rAKA akantu
__init__.py
View Options
# for the module
import
sys
as
__hbm_sys
def
export
(
definition
):
"""
Decorator to export definitions from sub-modules to the top-level package
:param definition: definition to be exported
:return: definition
"""
__module
=
__hbm_sys
.
modules
[
definition
.
__module__
]
__pkg
=
__hbm_sys
.
modules
[
__module
.
__package__
]
__pkg
.
__dict__
[
definition
.
__name__
]
=
definition
if
'__all__'
not
in
__pkg
.
__dict__
:
__pkg
.
__dict__
[
'__all__'
]
=
[]
__pkg
.
__all__
.
append
(
definition
.
__name__
)
return
definition
from
.
import
ctestresults
# noqa
from
.
import
arclint
# noqa
from
.
import
hbm
# noqa
Event Timeline
Log In to Comment