Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 81c393b3ded977375d35297b3d47b47014b2391a authored by Georg Brandl on 10 April 2012, 17:30:22 UTC
Merge.
Tip revision: 81c393b
__init__.py
"""distutils

The main package for the Python Module Distribution Utilities.  Normally
used from a setup script as

   from distutils.core import setup

   setup (...)
"""

# Distutils version
#
# Updated automatically by the Python release process.
#
#--start constants--
__version__ = "3.2.3"
#--end constants--
back to top