diff options
author | Greg Ward <gward@python.net> | 2000-08-30 17:32:24 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-08-30 17:32:24 (GMT) |
commit | 408e9ae299c1e89ef44184a61a3dfd13a357dbb7 (patch) | |
tree | 7f68786beab36dcc4df6d671c7bd3410a7ab304a | |
parent | 46a69b9c7f4c1c0506a900d67cd83215ec416885 (diff) | |
download | cpython-408e9ae299c1e89ef44184a61a3dfd13a357dbb7.zip cpython-408e9ae299c1e89ef44184a61a3dfd13a357dbb7.tar.gz cpython-408e9ae299c1e89ef44184a61a3dfd13a357dbb7.tar.bz2 |
Add ".cxx" to the list of known C++ extensions.
-rw-r--r-- | Lib/distutils/msvccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index eecbb62..6c3f8da 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -177,7 +177,7 @@ class MSVCCompiler (CCompiler) : # Private class data (need to distinguish C from C++ source for compiler) _c_extensions = ['.c'] - _cpp_extensions = ['.cc','.cpp'] + _cpp_extensions = ['.cc', '.cpp', '.cxx'] # Needed for the filename generation methods provided by the # base class, CCompiler. |