<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sphinx-git.git/doc/extdev, branch 7727_autosummary_PycodeError</title>
<subtitle>github.com: sphinx-doc/sphinx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/'/>
<entry>
<title>autodoc: deprecate SingledispatchFunctionDocumenter</title>
<updated>2020-10-04T04:50:10+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-10-03T04:33:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=2d37ba44193aac1f7082382ceb34e85078e64a32'/>
<id>2d37ba44193aac1f7082382ceb34e85078e64a32</id>
<content type='text'>
In #7487, SingledispatchFunctionDocumenter is merged into
FunctionDocumenter.  SingledispatchMethodDocumenter is also.  As a result,
They are no longer needed.  So this deprecates them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In #7487, SingledispatchFunctionDocumenter is merged into
FunctionDocumenter.  SingledispatchMethodDocumenter is also.  As a result,
They are no longer needed.  So this deprecates them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Close #8081: latex: Allow to add LaTeX package until writing tex file</title>
<updated>2020-09-20T16:01:49+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-08-09T17:23:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=5ef4825b57c8fd84488e38f7f5cf78ccf3d72698'/>
<id>5ef4825b57c8fd84488e38f7f5cf78ccf3d72698</id>
<content type='text'>
This postpones the evaluation of LaTeX packages via
``app.add_latex_package()`` to just before writing .tex file.  That
allows extensions to add LaTeX packages during reading and resolving
phase.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This postpones the evaluation of LaTeX packages via
``app.add_latex_package()`` to just before writing .tex file.  That
allows extensions to add LaTeX packages during reading and resolving
phase.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct numbers</title>
<updated>2020-08-21T00:58:28+00:00</updated>
<author>
<name>Chris Sewell</name>
<email>chrisj_sewell@hotmail.com</email>
</author>
<published>2020-08-21T00:58:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=46177f6af324ec2110b0c73467ee2659e75485e3'/>
<id>46177f6af324ec2110b0c73467ee2659e75485e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>📚 DOCS: Improve build process overview</title>
<updated>2020-08-20T21:37:37+00:00</updated>
<author>
<name>Chris Sewell</name>
<email>chrisj_sewell@hotmail.com</email>
</author>
<published>2020-08-20T21:37:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=5c744d834259d4144e779a79eaf0c9e312e75ed6'/>
<id>5c744d834259d4144e779a79eaf0c9e312e75ed6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: autodoc: Add `EMPTY` that matches to no members</title>
<updated>2020-08-02T16:59:53+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-08-01T16:48:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=46f0b3063d0fc4498a31787bacfe3047ccaec788'/>
<id>46f0b3063d0fc4498a31787bacfe3047ccaec788</id>
<content type='text'>
Add a special class `_Empty` to make the comparison of
:exclude-members: option simply.  It never matches to any members.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a special class `_Empty` to make the comparison of
:exclude-members: option simply.  It never matches to any members.
</pre>
</div>
</content>
</entry>
<entry>
<title>Close #8034: autodoc: :private-member: can take an list of member names</title>
<updated>2020-08-01T16:27:14+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-08-01T16:26:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=d7a84e83ccde33ff7a1c770fa20b02bce82554d3'/>
<id>d7a84e83ccde33ff7a1c770fa20b02bce82554d3</id>
<content type='text'>
Now :private-member: option can take an explicit list of member names to
be documented as its arguments (like :special-members: does).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now :private-member: option can take an explicit list of member names to
be documented as its arguments (like :special-members: does).
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '3.x' into 7993_texinfo_for_nested_desc</title>
<updated>2020-08-01T06:50:55+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-08-01T06:50:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=f71b26ac567a34fb03ace45b59162d287e480bfa'/>
<id>f71b26ac567a34fb03ace45b59162d287e480bfa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>several documentation improvements to theming, templating, and extension development</title>
<updated>2020-07-29T09:38:18+00:00</updated>
<author>
<name>Chris Holdgraf</name>
<email>choldgraf@berkeley.edu</email>
</author>
<published>2020-07-02T21:22:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=60b105d6aa15fd0681c40965e261847b61f3ddd9'/>
<id>60b105d6aa15fd0681c40965e261847b61f3ddd9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #7993: texinfo: TypeError is raised for nested object descriptions</title>
<updated>2020-07-25T13:57:12+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-07-22T18:20:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=e98f39d21d788490aa5fa974a2e26c01fbb75785'/>
<id>e98f39d21d788490aa5fa974a2e26c01fbb75785</id>
<content type='text'>
The texinfo writer remembers the current desc node to render
a desc_annotation node.  This makes the mechanism robust to support
nested object descriptions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The texinfo writer remembers the current desc node to render
a desc_annotation node.  This makes the mechanism robust to support
nested object descriptions.
</pre>
</div>
</content>
</entry>
<entry>
<title>output files comment</title>
<updated>2020-07-02T20:46:44+00:00</updated>
<author>
<name>Chris Holdgraf</name>
<email>choldgraf@berkeley.edu</email>
</author>
<published>2020-07-02T20:46:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=ef03bcc6ea47d83132b54c4b3894990c086af5b9'/>
<id>ef03bcc6ea47d83132b54c4b3894990c086af5b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
