Axel python 2.5 fix

This commit is contained in:
Ruud
2011-03-01 11:01:47 +01:00
parent 6888798ef6
commit b59c28d4a3
2 changed files with 78 additions and 74 deletions
+13
View File
@@ -0,0 +1,13 @@
# __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 inspec