Commit fa39cc6b authored by Yury V. Zaytsev's avatar Yury V. Zaytsev

Fix a couple of typos in distutils docstrings

Signed-off-by: default avatarYury V. Zaytsev <yury@shurup.com>
parent 47f9a727
"""Pyrex.Distutils.extension """Pyrex.Distutils.extension
Provides a modified Extension class, that understands hou to describe Provides a modified Extension class, that understands how to describe
Pyrex extension modules in setup scripts.""" Pyrex extension modules in setup scripts."""
__revision__ = "$Id:$" __revision__ = "$Id:$"
import os, sys import os
import sys
from types import * from types import *
import distutils.extension as _Extension import distutils.extension as _Extension
...@@ -23,7 +24,7 @@ class Extension(_Extension.Extension): ...@@ -23,7 +24,7 @@ class Extension(_Extension.Extension):
dict of compiler directives dict of compiler directives
pyrex_create_listing_file : boolean pyrex_create_listing_file : boolean
write pyrex error messages to a listing (.lis) file. write pyrex error messages to a listing (.lis) file.
pyrex_line_directivess : boolean pyrex_line_directives : boolean
emit pyx line numbers for debugging/profiling emit pyx line numbers for debugging/profiling
pyrex_cplus : boolean pyrex_cplus : boolean
use the C++ compiler for compiling and linking. use the C++ compiler for compiling and linking.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment