mirror of https://github.com/python/cpython.git
Merged revisions 67885 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67885 | benjamin.peterson | 2008-12-20 17:48:54 -0600 (Sat, 20 Dec 2008) | 1 line silence annoying DeprecationWarning ........
This commit is contained in:
parent
6ebe78f5cc
commit
6e43fb1459
|
@ -45,7 +45,11 @@ def issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):
|
|||
from pprint import pformat
|
||||
from docutils.io import StringOutput
|
||||
from docutils.utils import new_document
|
||||
from sphinx.builder import Builder
|
||||
|
||||
try:
|
||||
from sphinx.builders import Builder
|
||||
except ImportError:
|
||||
from sphinx.builder import Builder
|
||||
|
||||
try:
|
||||
from sphinx.writers.text import TextWriter
|
||||
|
|
Loading…
Reference in New Issue