~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to Lib/distutils/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-5fstfxju4ufrhthq
Tags: upstream-3.1~a1+20090322
ImportĀ upstreamĀ versionĀ 3.1~a1+20090322

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""distutils
 
2
 
 
3
The main package for the Python Module Distribution Utilities.  Normally
 
4
used from a setup script as
 
5
 
 
6
   from distutils.core import setup
 
7
 
 
8
   setup (...)
 
9
"""
 
10
 
 
11
__revision__ = "$Id: __init__.py 70230 2009-03-07 16:34:40Z benjamin.peterson $"
 
12
 
 
13
# Distutils version
 
14
#
 
15
# Updated automatically by the Python release process.
 
16
#
 
17
#--start constants--
 
18
__version__ = "3.1a1"
 
19
#--end constants--