diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-11-19 13:12:28 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-11-19 13:12:28 +0000 |
commit | fea5e52ee37ed85ca2f4279dafc6554988755fba (patch) | |
tree | 2de7f0c0a1e3b9e1b8fc27b70541c577a3d0b9d3 /Lib/distutils/msvccompiler.py | |
parent | 87c9ebf7206a5922fbc45216a2436f2baf713e37 (diff) | |
download | cpython-fea5e52ee37ed85ca2f4279dafc6554988755fba.tar.gz |
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 c2bd77de44..65a50cc79a 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 |