From 3c5731f5836cb42848e0871712b6eaa70d8fda38 Mon Sep 17 00:00:00 2001 From: Anderson Bravalheri Date: Wed, 28 Aug 2024 18:03:51 +0100 Subject: [PATCH 1/2] Fix outdated docstring in _msvccompiler --- distutils/_msvccompiler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/distutils/_msvccompiler.py b/distutils/_msvccompiler.py index 7400fbaa..6a892825 100644 --- a/distutils/_msvccompiler.py +++ b/distutils/_msvccompiler.py @@ -3,8 +3,7 @@ Contains MSVCCompiler, an implementation of the abstract CCompiler class for Microsoft Visual Studio 2015. -The module is compatible with VS 2015 and later. You can find legacy support -for older versions in distutils.msvc9compiler and distutils.msvccompiler. +Please ensure that you are using VS 2015 or later. """ # Written by Perry Stoll From de03b24ba3a522a990dfda352d2d5d8e1fa34650 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 2 Sep 2024 09:06:20 -0400 Subject: [PATCH 2/2] Prefer imperative, third-person. --- distutils/_msvccompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distutils/_msvccompiler.py b/distutils/_msvccompiler.py index 6a892825..0c7aa7af 100644 --- a/distutils/_msvccompiler.py +++ b/distutils/_msvccompiler.py @@ -3,7 +3,7 @@ Contains MSVCCompiler, an implementation of the abstract CCompiler class for Microsoft Visual Studio 2015. -Please ensure that you are using VS 2015 or later. +This module requires VS 2015 or later. """ # Written by Perry Stoll