<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sphinx-git.git/tests/roots, branch 9864_mathjax_loading_method</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>Fix #9781: autodoc_preserve_defaults does not support hexadecimal</title>
<updated>2021-10-30T16:11:56+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-10-30T15:26:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=b8844eb339df03b894a88b1eaf5859ebd443c792'/>
<id>b8844eb339df03b894a88b1eaf5859ebd443c792</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #9752: autodoc: Failed to detect type annotation for slots attribute</title>
<updated>2021-10-23T05:59:36+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-10-23T05:59:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=b778ee806eabbe39c4366de1348f51f47a4dddd6'/>
<id>b778ee806eabbe39c4366de1348f51f47a4dddd6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch '4.x' into 9607_incorrect_orig_bases</title>
<updated>2021-09-26T17:21:14+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-09-26T17:21:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=d288907fd1338696934fbaefae4fc0e9d322389a'/>
<id>d288907fd1338696934fbaefae4fc0e9d322389a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #9670 from jonppe/fix-download-file-with-special-characters</title>
<updated>2021-09-25T05:38:48+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-09-25T05:38:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=d75e3171cd9caed21949fd8b7c1d5c9a1b014406'/>
<id>d75e3171cd9caed21949fd8b7c1d5c9a1b014406</id>
<content type='text'>
Fix download file with special characters</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix download file with special characters</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for encoding local file links with special characters</title>
<updated>2021-09-24T17:34:09+00:00</updated>
<author>
<name>Johannes Aalto</name>
<email>ext-johannes.aalto@vaisala.com</email>
</author>
<published>2021-09-24T11:12:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=fa3b334ed0bcbfaae247d7d9ceee3aded7fdef07'/>
<id>fa3b334ed0bcbfaae247d7d9ceee3aded7fdef07</id>
<content type='text'>
Add test to make sure Sphinx uses proper URL encoding for
special characters in file names.

Use test_html_download() since it test_html5_output() doesn't
quite seem to have easy pattern to verify the contents of href
attribute.

Issue #3097

Signed-off-by: Johannes Aalto &lt;ext-johannes.aalto@vaisala.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add test to make sure Sphinx uses proper URL encoding for
special characters in file names.

Use test_html_download() since it test_html5_output() doesn't
quite seem to have easy pattern to verify the contents of href
attribute.

Issue #3097

Signed-off-by: Johannes Aalto &lt;ext-johannes.aalto@vaisala.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #9607: autodoc: Incorrect base class detection</title>
<updated>2021-09-20T04:20:26+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-09-20T04:20:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=10b7f0e2522e44fe33f900ef317c25bbadeeb5a0'/>
<id>10b7f0e2522e44fe33f900ef317c25bbadeeb5a0</id>
<content type='text'>
In case of the descendants of generic class, the value of
obj.__orig_bases__ is incorrect because it returns original base
arguments for the child of the generic class instead of the target
class itself.

This uses obj.__dict__ to get the correct __orig_bases__ information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In case of the descendants of generic class, the value of
obj.__orig_bases__ is incorrect because it returns original base
arguments for the child of the generic class instead of the target
class itself.

This uses obj.__dict__ to get the correct __orig_bases__ information.
</pre>
</div>
</content>
</entry>
<entry>
<title>Close #9639: autodoc: Support asynchronous generator functions</title>
<updated>2021-09-16T17:20:40+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-09-16T17:19:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=ccfca458eac84342d8f90f8d6c93b4711a849614'/>
<id>ccfca458eac84342d8f90f8d6c93b4711a849614</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos discovered by codespell</title>
<updated>2021-09-08T00:15:25+00:00</updated>
<author>
<name>Christian Clauss</name>
<email>cclauss@me.com</email>
</author>
<published>2021-09-08T00:15:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=86583c578c807d449e3a9d5ee56b1e7081340629'/>
<id>86583c578c807d449e3a9d5ee56b1e7081340629</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Check complete ancestry of text nodes for smartquotes eligibility.</title>
<updated>2021-08-21T05:20:04+00:00</updated>
<author>
<name>Justin Turner Arthur</name>
<email>justinarthur@gmail.com</email>
</author>
<published>2021-08-20T08:38:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=adcda091d968d25e83a3c69c13388c667ff5edcb'/>
<id>adcda091d968d25e83a3c69c13388c667ff5edcb</id>
<content type='text'>
Fixes sphinx-doc/sphinx#9564.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes sphinx-doc/sphinx#9564.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix autodoc_docstring_signature support for __init__ and __new__</title>
<updated>2021-07-31T16:32:40+00:00</updated>
<author>
<name>Jeremy Maitin-Shepard</name>
<email>jbms@google.com</email>
</author>
<published>2021-07-31T16:18:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sphinx-git.git/commit/?id=6c969ac87e9bf1b1168c2cde0dd6b25ef70129fe'/>
<id>6c969ac87e9bf1b1168c2cde0dd6b25ef70129fe</id>
<content type='text'>
The `MethodDocumenter.get_doc` method added by
51ae283a38ed297df3fd5e0554dcc9acaa103e8c prevents
DocstringSignatureMixin from working correctly for __init__ and
__new__ methods.  Additionally, the __new__ docstring was not obtained
correctly.

This commit checks for `self._new_docstrings` being set, and also
corrects the logic for obtaining the __new__ docstring.

There still remains the issue that when the class signature is
obtained from the signature of __init__ or __new__, only the real
signature is used, due to the use of `sphinx.util.inspect.signature`;
the autodoc_docstring_signature option does not have any effect.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `MethodDocumenter.get_doc` method added by
51ae283a38ed297df3fd5e0554dcc9acaa103e8c prevents
DocstringSignatureMixin from working correctly for __init__ and
__new__ methods.  Additionally, the __new__ docstring was not obtained
correctly.

This commit checks for `self._new_docstrings` being set, and also
corrects the logic for obtaining the __new__ docstring.

There still remains the issue that when the class signature is
obtained from the signature of __init__ or __new__, only the real
signature is used, due to the use of `sphinx.util.inspect.signature`;
the autodoc_docstring_signature option does not have any effect.
</pre>
</div>
</content>
</entry>
</feed>
