diff options
author | Thomas Heller <theller@ctypes.org> | 2003-10-08 12:01:33 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2003-10-08 12:01:33 (GMT) |
commit | 95a97d59c0317300bfdc0def004ee52e5fcfee66 (patch) | |
tree | 7bdced2bc5312c4096aac68d65f6241a601868d7 /Doc/dist | |
parent | f563c8bbac748e7ca9a1127c67831902bccaee02 (diff) | |
download | cpython-95a97d59c0317300bfdc0def004ee52e5fcfee66.zip cpython-95a97d59c0317300bfdc0def004ee52e5fcfee66.tar.gz cpython-95a97d59c0317300bfdc0def004ee52e5fcfee66.tar.bz2 |
Fix a typo, discovered by Joonas Paalasmaa.
Backported to 2.3
Diffstat (limited to 'Doc/dist')
-rw-r--r-- | Doc/dist/dist.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/dist/dist.tex b/Doc/dist/dist.tex index 87fc984..17db70b 100644 --- a/Doc/dist/dist.tex +++ b/Doc/dist/dist.tex @@ -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} |