diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-19 13:12:28 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-19 13:12:28 (GMT) |
commit | d448f66317130555cfc157683c743b3d004374c4 (patch) | |
tree | 35f3a3ffc03f61b551e6b73dee7fadd105b48395 /Lib/distutils/msvccompiler.py | |
parent | 6f429c3d1c215443869d8e5a8176e9beeeb03421 (diff) | |
download | cpython-d448f66317130555cfc157683c743b3d004374c4.zip cpython-d448f66317130555cfc157683c743b3d004374c4.tar.gz cpython-d448f66317130555cfc157683c743b3d004374c4.tar.bz2 |
Add comment to Distutil files about requiring 1.5.2 compatibility, as
suggested by PEP 291.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index c2bd77d..65a50cc 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -3,11 +3,12 @@ Contains MSVCCompiler, an implementation of the abstract CCompiler class for the Microsoft Visual Studio.""" - # Written by Perry Stoll # hacked by Robin Becker and Thomas Heller to do a better job of # finding DevStudio (through the registry) +# This module should be kept compatible with Python 1.5.2. + __revision__ = "$Id$" import sys, os, string |