Added python server modules to __all__

This commit is contained in:
aum
2004-07-30 12:36:00 +00:00
committed by zzz
parent 2e98dd09e7
commit 684ef709f5

View File

@ -1,9 +1,10 @@
""" """
i2p -- I2P Python interface i2p -- I2P Python interface
""" """
__all__ = ['Error', 'RouterError', 'sam', 'eep', 'router'] __all__ = ['Error', 'RouterError', 'sam', 'eep', 'router',
'SocketServer', 'BaseHTTPServer', 'SimpleHTTPServer', 'CGIHTTPServer',
]
class Error(Exception): class Error(Exception):
"""Base class for all I2P errors.""" """Base class for all I2P errors."""
@ -17,4 +18,3 @@ import router
# Internal use only # Internal use only
#import samclasses as _samclasses #import samclasses as _samclasses