summaryrefslogtreecommitdiff
path: root/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py')
-rw-r--r--AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py
new file mode 100644
index 0000000000..32fed3f618
--- /dev/null
+++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/__init__.py
@@ -0,0 +1,19 @@
+"""distutils
+
+The main package for the Python Module Distribution Utilities. Normally
+used from a setup script as
+
+ from distutils.core import setup
+
+ setup (...)
+"""
+
+__revision__ = "$Id$"
+
+# Distutils version
+#
+# Updated automatically by the Python release process.
+#
+#--start constants--
+__version__ = "2.7.2"
+#--end constants--