From: Greg Ward Date: Wed, 30 Aug 2000 17:32:24 +0000 (+0000) Subject: Add ".cxx" to the list of known C++ extensions. X-Git-Tag: v2.0b1~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=408e9ae299c1e89ef44184a61a3dfd13a357dbb7;p=thirdparty%2FPython%2Fcpython.git Add ".cxx" to the list of known C++ extensions. --- diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index eecbb620ed3a..6c3f8dab71aa 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.