You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
412 B
13 lines
412 B
14 years ago
|
# __init__.py
|
||
|
#
|
||
|
# Copyright (C) 2010 Adrian Cristea adrian dot cristea at gmail dotcom
|
||
|
#
|
||
|
# This module is part of Axel and is released under
|
||
|
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
||
|
|
||
|
import inspect
|
||
|
from .axel import *
|
||
|
__all__ = sorted(name for name, obj in locals().items()
|
||
|
if not (name.startswith('_') or inspect.ismodule(obj)))
|
||
|
__all__.append('axel')
|
||
|
del inspect
|