From 53c1bc3f9bf4d83f01e5dc8c228379ae525a2cbb Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 27 Jul 2000 01:21:54 +0000 Subject: [PATCH] Typo fix from David Ascher. --- Lib/distutils/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 37d19c7db4..2ede447fed 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -292,7 +292,7 @@ class build_ext (Command): ext.undef_macros = [] for macro in macros: if not (type(macro) is TupleType and - 1 <= len(macros) <= 2): + 1 <= len(macro) <= 2): raise DistutilsSetupError, \ ("'macros' element of build info dict " "must be 1- or 2-tuple") -- 2.50.0