Fix sf bug 666219: assertion error in httplib.
[python/dscho.git] / Lib / distutils / __init__.py
blob7873d297b3e17eb0c5d5262dd5d7f94ee4af604f
1 """distutils
3 The main package for the Python Module Distribution Utilities. Normally
4 used from a setup script as
6 from distutils.core import setup
8 setup (...)
9 """
11 # This module should be kept compatible with Python 1.5.2.
13 __revision__ = "$Id$"
15 __version__ = "1.0.3"