On Tue, Jul 6, 2010 at 5:33 PM, Kevin Dunn <[email protected]> wrote:
> html_file_suffix = None

Another option would be to use some other singleton value; that would
avoid compatibility issues.

In this case, docutils would need to provide a suitable singleton:

    NoExtension = object()

allowing you to configure:

    html_file_suffix = NoExtension

making the test:

    if self.config.html_file_suffix is not NoExtension:
        ...


  -Fred

-- 
Fred L. Drake, Jr.    <fdrake at gmail.com>
"A storm broke loose in my mind."  --Albert Einstein

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to