]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo, discovered by Joonas Paalasmaa.
authorThomas Heller <theller@ctypes.org>
Wed, 8 Oct 2003 12:02:44 +0000 (12:02 +0000)
committerThomas Heller <theller@ctypes.org>
Wed, 8 Oct 2003 12:02:44 +0000 (12:02 +0000)
Doc/dist/dist.tex

index 87fc9848083b061fcb24512234c020c6a66358d6..17db70bca92c6ba80d7dba917658a5680e326e75 100644 (file)
@@ -555,8 +555,8 @@ For example:
 
 \begin{verbatim}
 Extension(...,
-          define_macros=[('NDEBUG', '1')],
-                         ('HAVE_STRFTIME', None),
+          define_macros=[('NDEBUG', '1'),
+                         ('HAVE_STRFTIME', None)],
           undef_macros=['HAVE_FOO', 'HAVE_BAR'])
 \end{verbatim}