Commit 9357a7c7 authored by Tarek Ziadé's avatar Tarek Ziadé

Merged revisions 73801 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73801 | tarek.ziade | 2009-07-03 11:01:07 +0200 (Fri, 03 Jul 2009) | 1 line

  cleaned up distutils.command.build_py
........
parent 354b6e71
...@@ -4,15 +4,15 @@ Implements the Distutils 'build_py' command.""" ...@@ -4,15 +4,15 @@ Implements the Distutils 'build_py' command."""
__revision__ = "$Id$" __revision__ = "$Id$"
import sys, os import os
from glob import glob from glob import glob
from distutils.core import Command from distutils.core import Command
from distutils.errors import * from distutils.errors import DistutilsOptionError, DistutilsFileError
from distutils.util import convert_path, Mixin2to3 from distutils.util import convert_path, Mixin2to3
from distutils import log from distutils import log
class build_py (Command): class build_py(Command):
description = "\"build\" pure Python modules (copy to build directory)" description = "\"build\" pure Python modules (copy to build directory)"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment