[issue12947] Examples in library/doctest.html lack the flags

2012-04-30 Thread Stefano Taschini
Stefano Taschini added the comment: Ezio, the patch I attached goes into that direction, by adding a ":trim-doctest-flags: disable" option to the code blocks. I thought I had a good reason for having the option worded as ":trim-doctest-flags: disable" instead of ":keep-doctest-flags:", now I'

[issue12947] Examples in library/doctest.html lack the flags

2012-04-29 Thread Ezio Melotti
Ezio Melotti added the comment: Is there a way to add a :keep-doctest-flags: options to literal blocks? -- stage: test needed -> needs patch type: -> enhancement ___ Python tracker ___

[issue12947] Examples in library/doctest.html lack the flags

2012-04-19 Thread Stefano Taschini
Stefano Taschini added the comment: As far as I can see, Sphinx has a global setting for trim_doctest_flags but lacks the possibility of locally disabling the trimming. A quick workaround would be to have the following sphinx extension added: class ProxyLexer(object): def __init__(self,

[issue12947] Examples in library/doctest.html lack the flags

2012-04-18 Thread Éric Araujo
Éric Araujo added the comment: Thank you. I think it’s clear that for the docs of the doctest flags we need to display snippets with the flags. -- resolution: invalid -> stage: committed/rejected -> test needed status: closed -> open ___ Python tr

[issue12947] Examples in library/doctest.html lack the flags

2012-04-18 Thread Stefano Taschini
Stefano Taschini added the comment: Concrete examples can be seen in the section http://docs.python.org/library/doctest.html#option-flags-and-directives For instance at http://docs.python.org/library/doctest.html#doctest.IGNORE_EXCEPTION_DETAIL The doctest flags present in the sources in h

[issue12947] Examples in library/doctest.html lack the flags

2011-09-09 Thread Georg Brandl
Georg Brandl added the comment: Hehe... Sphinx makes a point of *removing* doctest flags, to enable doctesting of code snippets without distracting the reader with the test-internal flags. I think it's because you used a newer version locally. -- _

[issue12947] Examples in library/doctest.html lack the flags

2011-09-09 Thread Éric Araujo
Éric Araujo added the comment: Ezio prompted me to give precise examples, and I can’t find any in the docs online. Maybe it was only a local build with certain options that caused this problem, I’ll reopen if I find out. -- resolution: -> invalid stage: -> committed/rejected status

[issue12947] Examples in library/doctest.html lack the flags

2011-09-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue12947] Examples in library/doctest.html lack the flags

2011-09-09 Thread Éric Araujo
New submission from Éric Araujo : The docs for the doctest module contains examples that use doctest flags to control behavior, but the HTML version does not contain the flags, making the examples useless. I don’t know if this is a bug with the HTML builder or something we can fix in markup.