Builders¶
These are the built-in Sphinx builders. More builders can be added by extensions.
The builder's "name" must be given to the -M or -b command-line options of sphinx-build to select a builder.
The most common builders are:
- html
HTMLページをビルドします。デフォルトのビルダーです。
- dirhtml
HTMLページをビルドしますが、ドキュメントごとにディレクトリが生成されます。ウェブサーバで提供する場合に、
.htmlがURLに付かないようにして、URLが分かりやすくなります。- singlehtml
すべてのコンテンツが含まれる、単一のHTMLを生成します。
- htmlhelp, qthelp, devhelp, epub
フォーマットごとに、ドキュメントのコレクションを構築するのに必要な情報と一緒に、HTMLファイルにビルドします。
- applehelp
Apple Help Bookを生成します。オープンソースではありませんが、Mac OS X 10.6以降でのみ使用できる hiutil と codesign が必要になります。
- latex
pdflatex を使用して、PDFドキュメントにコンパイルできるような、LaTeXのソースにビルドします。
- man
UNIX系システムで利用される、groffフォーマットのmanページをビルドします。
- texinfo
makeinfo を使ってInfoファイルを生成するための、Texinfoファイルにビルドします。
- text
プレーンテキストファイルをビルドします。
- gettext
gettextスタイルのメッセージカタログ(
.potファイル)にビルドします。- doctest
もしも
doctest拡張が有効になっている場合には、ドキュメント内のすべてのdoctestを実行します。- linkcheck
すべての外部リンク先が存在しているか確認をします。
- xml
Docutilsが生成するXMLファイルをそのまま出力します。
- pseudoxml
コンパクトな整形された"pseudo-XML"を出力します。これは中間ドキュメントツリーの内部構造です。
- class sphinx.builders.html.StandaloneHTMLBuilder[ソース]¶
This is the standard HTML builder. Its output is a directory with HTML files, complete with style sheets and optionally the reStructuredText sources. There are quite a few configuration values that customize the output of this builder, see the chapter HTML出力のオプション for details.
- name = 'html'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
- class sphinx.builders.dirhtml.DirectoryHTMLBuilder[ソース]¶
このクラスは、標準のHTMLビルダーのサブクラスです。これは
index.htmlという名前のHTMLファイルと一緒にディレクトリを出力します。そのときに、そのページ名がディレクトリの名前になります。例えば、markup/rest.rstというファイルがあるとすると、markup/rest.htmlというファイルが出力されるのではなく、markup/rest/index.htmlというファイルが出力されます。ページ間のリンクが生成される場合には、末尾のindex.htmlを省いて、markup/rest/というようなURLが生成されます。- name = 'dirhtml'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 0.6.
- class sphinx.builders.singlehtml.SingleFileHTMLBuilder[ソース]¶
This is an HTML builder that combines the whole project in one output file. (Obviously this only works with smaller projects.) The file is named like the root document. No indices will be generated.
- name = 'singlehtml'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.0.
- class sphinxcontrib.htmlhelp.HTMLHelpBuilder[ソース]¶
このビルダーは標準のHTMLビルダーと同じものを出力しますが、MicrosoftのHTML Help Workshopで使用できる、HTMLヘルプのサポートファイルも生成します。これらの入力をHTML Help Workshop上でコンパイルすると、CHMファイルが生成されます。
- name = 'htmlhelp'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
- class sphinxcontrib.qthelp.QtHelpBuilder[ソース]¶
このビルダーは標準のHTMLビルダーと同じものを出力しますが、 Qt help collectionを使ってコンパイルするのに必要なサポートファイル群も一緒に出力します。
バージョン 2.0 で変更: Moved to sphinxcontrib.qthelp from sphinx.builders package.
- name = 'qthelp'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
- class sphinxcontrib.applehelp.AppleHelpBuilder[ソース]¶
このビルダーはApple Help Bookを出力します。standalone HTMLビルダーと同じ出力を元に生成しています。
ソースディレクトリが何らかの
.lprojフォルダを含む場合、選択された言語に対応するフォルダが、生成された出力とマージされます。これらのフォルダは、その他のドキュメントタイプには無視されます。有効なヘルプブックを生成するには、コマンドラインツールの hiutil をビルダーに用意してやる必要があります。ただ、Mac OS X 10.6 and aboveのみでしか使用できません。インデックス作成のステップを飛ばすには
applehelp_disable_external_toolsにTrueを設定します。この場合、hiutil をバンドル内の全ての.lprojフォルダに対して実行する必要があります。- name = 'applehelp'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/png', 'image/gif', 'image/jpeg', 'image/tiff', 'image/jp2', 'image/svg+xml']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.3.
バージョン 2.0 で変更: Moved to sphinxcontrib.applehelp from sphinx.builders package.
- class sphinxcontrib.devhelp.DevhelpBuilder[ソース]¶
このビルダーは標準のHTMLビルダーと同じものを出力しますが、GNOME Devhelpリーダーで使用されいてる GNOME Devhelp のサポートファイルも生成します。
- name = 'devhelp'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
バージョン 2.0 で変更: Moved to sphinxcontrib.devhelp from sphinx.builders package.
- class sphinx.builders.epub3.Epub3Builder[ソース]¶
This builder produces the same output as the standalone HTML builder, but also generates an epub file for ebook readers. See Epub情報 for details about it. For definition of the epub format, have a look at https://idpf.org/epub or https://en.wikipedia.org/wiki/EPUB. The builder creates EPUB 3 files.
- name = 'epub'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.4.
バージョン 1.5 で変更: Since Sphinx 1.5, the epub3 builder is used as the default epub builder.
- class sphinx.builders.latex.LaTeXBuilder[ソース]¶
This builder produces LaTeX source files in the output directory. The actual PDF builds happen inside this output directory and need to be triggered in a second step. This can be done via make all-pdf there. To combine the two steps into only one, use
sphinx-build -M(i.e.-M latexpdfnot-b latexpdf) or make latexpdf at the project root.See
latex_documentsand the chapter LaTeX出力のオプション for available options.PDF builds need a sufficiently complete LaTeX installation. The testing is currently (since 5.3.0) done on Ubuntu 22.04LTS, whose LaTeX distribution matches upstream TeXLive 2021 as of 2022/02/04, but PDF builds can be successfully done on much older LaTeX installations.
At any rate, on Ubuntu for example, following packages must all be present:
texlive-latex-recommendedtexlive-fonts-recommendedtexlive-fonts-extra(needed forfontawesome5, see the 7.4.0 change notice below)tex-gyre(iflatex_engineleft to default)texlive-latex-extralatexmk
バージョン 4.0.0 で変更: TeX Gyre fonts now required for
'pdflatex'engine (default).バージョン 7.4.0 で変更: LaTeX package
xcoloris now required (it is part of Ubuntutexlive-latex-recommendedanyhow). The LaTeX packagefontawesome5is recommended. See the 'sphinxsetup'iconpackagekey for more.Additional packages are needed in some circumstances:
texlive-lang-cyrillicfor Cyrillic (and also thencm-superif using the default fonts),texlive-lang-greekfor Greek (and also thencm-superif using the default fonts),texlive-xetexiflatex_engineis'xelatex',texlive-luatexiflatex_engineis'lualatex',fonts-freefont-otfiflatex_engineis either'xelatex'or'lualatex'.
注釈
Since 1.6,
make latexpdfuses on GNU/Linux and macOS latexmk, as it makes sure the needed number of runs is automatically executed. On Windows the PDF builds execute a fix number of LaTeX runs (three, thenmakeindex, then two more).One can pass to
latexmkoptions via theLATEXMKOPTSMakefile variable. For example:make latexpdf LATEXMKOPTS="-silent"reduces console output to a minimum.
Also, if
latexmkis at version 4.52b or higher (January 2017)LATEXMKOPTS="-xelatex"speeds up PDF builds via XeLateX in case of numerous graphics inclusions.To pass options directly to the
(pdf|xe|lua)latexbinary, use variableLATEXOPTS, for example:make latexpdf LATEXOPTS="--halt-on-error"- name = 'latex'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'latex'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['application/pdf', 'image/png', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Note that a direct PDF builder is being provided by rinohtype. The builder's
name is rinoh. Refer to the rinohtype manual for details.
- class sphinx.builders.text.TextBuilder[ソース]¶
This builder produces a text file for each reStructuredText file. This is almost the same as the reStructuredText source, but with much of the markup stripped for better readability.
- name = 'text'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'text'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 0.4.
- class sphinx.builders.manpage.ManualPageBuilder[ソース]¶
このビルダーは、groffフォーマットのmanページを作成します。manページに含めるドキュメントは、
man_pages設定値を使って指定します。- name = 'man'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'man'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.0.
- class sphinx.builders.texinfo.TexinfoBuilder[ソース]¶
このビルダーは、 makeinfo プログラムを使って、Infoファイルを生成可能な、Texinfoファイルを生成します。どのドキュメントをTexinfoファイルに含めるかは、
texinfo_documents設定値を使って設定します。InfoフォーマットはGNU Emacsやターミナルベースの info プログラムで使用される、オンラインヘルプシステムの基盤となっています。詳しくは、 Texinfo情報 を参照してください。Texinfoフォーマットは、GNUプロジェクトの、公式なドキュメントシステムです。Texinfoについての詳細は、 https://www.gnu.org/software/texinfo/ で見ることができます。
- name = 'texinfo'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'texinfo'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/png', 'image/jpeg', 'image/gif']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.1.
- class sphinxcontrib.serializinghtml.SerializingHTMLBuilder[ソース]¶
This builder uses a module that implements the Python serialization API (
pickle,simplejson,phpserialize, and others) to dump the generated HTML documentation. The pickle builder is a subclass of it.このビルダーのサブクラスを作成して PHP serialization フォーマットでシリアライズするには、以下のようにします:
import phpserialize class PHPSerializedBuilder(SerializingHTMLBuilder): name = 'phpserialized' implementation = phpserialize out_suffix = '.file.phpdump' globalcontext_filename = 'globalcontext.phpdump' searchindex_filename = 'searchindex.phpdump'
- implementation¶
A module that implements
dump(),load(),dumps()andloads()functions that conform to the functions with the same names from the pickle module. Known modules implementing this interface aresimplejson,phpserialize,plistlib, and others.
- out_suffix¶
すべての通常のファイルに付くサフィックスです。
- globalcontext_filename¶
"グローバルコンテキスト"を含むファイルのファイル名です。これは、プロジェクト名などの一般的な設定値を含む辞書です。
- searchindex_filename¶
Sphinxが作成する、検索インデックスのファイル名です。
出力フォーマットの詳細については、 シリアライズを行うビルダーの詳細 を参照してください。
Added in version 0.5.
- class sphinxcontrib.serializinghtml.PickleHTMLBuilder[ソース]¶
このビルダーは、pickleでシリアライズしたほとんどのHTML片と、目次情報を含むディレクトリを作成します。このビルダーで生成した結果は、標準のHTMLテンプレートを使用しない、ウェブアプリケーションや、カスタムの後処理ツールで使えます。
出力フォーマットの詳細については、 シリアライズを行うビルダーの詳細 を参照してください。
- name = 'pickle'¶
The builder's name. This is the value used to select builders on the command line.
古いビルダー名
webもまだ使用できます。
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
ファイルのサフィックスは
.fpickleになります。グローバルコンテキストはglobalcontext.pickleに、検索インデックスはsearchindex.pickleになります。
- class sphinxcontrib.serializinghtml.JSONHTMLBuilder[ソース]¶
このビルダーは、jsonでシリアライズしたほとんどのHTML片と、目次情報を含むディレクトリを作成します。このビルダーで生成した結果は、標準のHTMLテンプレートを使用しない、ウェブアプリケーションや、カスタムの後処理ツールで使用できます。
出力フォーマットの詳細については、 シリアライズを行うビルダーの詳細 を参照してください。
- name = 'json'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'html'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = ['image/svg+xml', 'image/png', 'image/gif', 'image/jpeg']¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
ファイルのサフィックスは
.fjsonになります。グローバルコンテキストはglobalcontext.jsonに、検索インデックスはsearchindex.jsonになります。Added in version 0.5.
- class sphinx.builders.gettext.MessageCatalogBuilder[ソース]¶
このビルダーは、gettext スタイルのメッセージ カタログを生成します。最上位のファイルとサブディレクトリはそれぞれ1つの
.potカタログ テンプレートに変換されます。この機能については、 国際化 のドキュメントを参照してください。
- name = 'gettext'¶
The builder's name. This is the value used to select builders on the command line.
- format = ''¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.1.
- class sphinx.builders.changes.ChangesBuilder[ソース]¶
This builder produces an HTML overview of all
versionadded,versionchanged,deprecatedandversionremoveddirectives for the currentversion. This is useful to generate a changelog file, for example.- name = 'changes'¶
The builder's name. This is the value used to select builders on the command line.
- format = ''¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
- class sphinx.builders.dummy.DummyBuilder[ソース]¶
このビルダーは何も出力を行いません。入力ファイルをパースしその整合性を確認するだけです。これは入力ファイルの文法をチェックする場合有用です。
- name = 'dummy'¶
The builder's name. This is the value used to select builders on the command line.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.4.
- class sphinx.builders.linkcheck.CheckExternalLinksBuilder[ソース]¶
このビルダーは、すべてのドキュメントの外部リンクをチェックして、
requestsモジュールを使用してきちんと開けるかどうか確認を行います。壊れたリンク、および、リダイレクトされるリンクの情報を、標準出力と、出力ディレクトリのoutput.txtというファイルに出力します。- name = 'linkcheck'¶
The builder's name. This is the value used to select builders on the command line.
- format = ''¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
バージョン 1.5 で変更: Since Sphinx 1.5, the linkcheck builder uses the requests module.
バージョン 3.4 で変更: The linkcheck builder retries links when servers apply rate limits.
- class sphinx.builders.xml.XMLBuilder[ソース]¶
このビルダーは、Docutils ネイティブのXML ファイルを生成します。出力されたファイルはXSLTプロセッサなどの標準的なXMLツールで任意の最終的なフォーマットに変換できます。
- name = 'xml'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'xml'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.2.
- class sphinx.builders.xml.PseudoXMLBuilder[ソース]¶
このビルダーは、Sphinx/Docutilsの「読み込み(Reader)・変換(Transform)・書き出し(Writer)」パイプラインのデバッグに使うことが出来ます。このビルダーは入れ子構造で(終了タグ)のないコンパクトな"擬似XML"ファイルを生成します。全てのエレメントの外部属性が出力され、また残りの「保留中」の要素の内部属性も出力されます。
- name = 'pseudoxml'¶
The builder's name. This is the value used to select builders on the command line.
- format = 'pseudoxml'¶
The builder's output format, or '' if no document output is produced. This is commonly the file extension, e.g. "html", though any string value is accepted. The builder's format string can be used by various components such as
SphinxPostTransformor extensions to determine their compatibility with the builder.
- supported_image_types = []¶
The list of MIME types of image formats supported by the builder. Image files are searched in the order in which they appear here.
Added in version 1.2.
組み込みのSphinx拡張には、以下の追加のビルダーが含まれます:
シリアライズを行うビルダーの詳細¶
All serialization builders outputs one file per source file and a few special
files. They also copy the reStructuredText source files
to the _sources directory under the output directory.
PickleHTMLBuilder クラスは組み込みのサブクラスで、pickleでシリアライズを行うインタフェースを実装しています。
ソースファイルごとに出力されるファイルは out_suffix で指定された拡張子を持ち、ソースファイルと同様のディレクトリ構成で書き出されます。これらのファイルは以下のようなキーを持つ辞書、あるいは辞書のようなオブジェクトとして復元することが可能です。
bodyHTMLの本体が格納されています。HTMLトランスレータを利用してレンダリングされたものになります。
titleドキュメントのタイトルです。HTMLのマークアップが含まれている可能性があります。
tocファイルの索引になります。HTMLの
<ul>を使って表現されています。display_toctocが一つ以上のエントリーを含む場合にTrueになる、ブール型の値になります。current_page_name現在のファイルのドキュメント名になります。
parents,prevandnextTOCツリー上で関連する章の情報です。関連は辞書として表現されます。
link(HREF情報)とtitle(関連ドキュメントのタイトル情報のHTML)が含まれます。parentsの場合には、関連のリストが含まれますが、prevとnextの場合には関連が一つだけ含まれます。sourcename_sources以下に置かれている、ソースファイルの名前になります。
出力ディレクトリのルートには、以下の特殊なファイルが配置されます:
SerializingHTMLBuilder.globalcontext_filenamepickleでシリアライズされた辞書です。以下のキーを持っています:
project,copyright,release,version設定ファイルで指定された、同じ名前の設定の値が入ります。
stylelast_updated最後にビルドした日時です。
builder使用したビルダーの名前です。この場合はこれは常に
'pickle'になります。titlesすべてのドキュメントのHTML形式のタイトルを含む辞書です。
SerializingHTMLBuilder.searchindex_filenameドキュメントの検索で使用されるインデックスになります。以下のエントリーを含む、pickleでシリアライズされたエントリーのリストになります。
インデックスが作成されたドキュメント名のリストです。
HTMLの文字列形式で作成された、タイトルのリストです。最初のリストと同じ順序になっています。
単語から、数値のリストへの辞書です。この数値は最初のリストのインデックスになります。
environment.pickleビルド環境です。これは常にpickleでシリアライズされたファイルで、ビルダーとは独立しています。ビルダーが起動された地点で使用された、環境のコピーです。ドキュメント間の共有のメンバーです。
他のシリアライズされたファイルとは異なり、このファイルは
sphinxのパッケージのみが中を読むことを想定しています。