<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sphinx-git.git/tests/typing_test_data.py, branch 3.x</title>
<subtitle>github.com: sphinx-doc/sphinx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/'/>
<entry>
<title>refactor: Fix flake8 violations under tests/ directory</title>
<updated>2020-11-15T08:15:40+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-11-15T08:03:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=21a3bd41275667b2120320cc792208aec161dce8'/>
<id>21a3bd41275667b2120320cc792208aec161dce8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Sort imports with isort</title>
<updated>2020-11-11T12:19:05+00:00</updated>
<author>
<name>François Freitag</name>
<email>mail@franek.fr</email>
</author>
<published>2020-11-11T11:00:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=0949735210abaa05b6448e531984f159403053f4'/>
<id>0949735210abaa05b6448e531984f159403053f4</id>
<content type='text'>
Keep imports alphabetically sorted and their order homogeneous across
Python source files.

The isort project has more feature and is more active than the
flake8-import-order plugin.

Most issues caught were simply import ordering from the same module.
Where imports were purposefully placed out of order, tag with
isort:skip.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Keep imports alphabetically sorted and their order homogeneous across
Python source files.

The isort project has more feature and is more active than the
flake8-import-order plugin.

Most issues caught were simply import ordering from the same module.
Where imports were purposefully placed out of order, tag with
isort:skip.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #7935: autodoc: A default value inspect._empty conseals signatures</title>
<updated>2020-07-12T05:03:28+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-07-10T13:50:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=17a5a29f1eeb89f35a430ac50597d0f82e8b45a9'/>
<id>17a5a29f1eeb89f35a430ac50597d0f82e8b45a9</id>
<content type='text'>
A function signature is not shown when the function has a parameter
having ``inspect._empty`` as its default value because Signature class
validates function signatures on instantiation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A function signature is not shown when the function has a parameter
having ``inspect._empty`` as its default value because Signature class
validates function signatures on instantiation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sphinx.util.typing.stringify render optional unions better</title>
<updated>2020-05-11T16:20:45+00:00</updated>
<author>
<name>John R. Lenton</name>
<email>jlenton@gmail.com</email>
</author>
<published>2020-05-11T16:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=61378fe048665f6d9b1116ec40d7c62d78c50395'/>
<id>61378fe048665f6d9b1116ec40d7c62d78c50395</id>
<content type='text'>
Without this change, stringify(Optional[Union[int, str]]) returns
'Union[int, str, None]' rather than the expected 'Optional[...]'.

This change fixes that.

fixes: #7654
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without this change, stringify(Optional[Union[int, str]]) returns
'Union[int, str, None]' rather than the expected 'Optional[...]'.

This change fixes that.

fixes: #7654
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix autodoc: missing type annotation for variadic and keyword parameters (refs: #6574)</title>
<updated>2019-07-13T10:25:38+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-07-13T10:25:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=92491c0769f8848408917d6c28e03a23777f5590'/>
<id>92491c0769f8848408917d6c28e03a23777f5590</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #6347: autodoc: crashes with a plain Tuple on Python 3.6 and 3.5</title>
<updated>2019-05-28T15:51:01+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2019-05-28T13:43:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=880c47ff61a145f2b17ebafa1ce61e9eac618665'/>
<id>880c47ff61a145f2b17ebafa1ce61e9eac618665</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 '1.8'</title>
<updated>2018-10-31T16:24:12+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2018-10-31T16:24:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=8b687ac30481e7204677138d8f2f3b49e354963e'/>
<id>8b687ac30481e7204677138d8f2f3b49e354963e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #5480: autodoc: unable to find type hints for unresolvable Forward references</title>
<updated>2018-10-15T14:40:05+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2018-10-15T13:03:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=793792fafc8c354a870240ab16d299df206e70c4'/>
<id>793792fafc8c354a870240ab16d299df206e70c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: Merge py3/test_util_inspect_py3.py to test_util_inspect.py</title>
<updated>2018-09-22T07:36:10+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2018-09-22T07:36:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=40a2fdf3155ce2ac123cdf16b05bdb3520b84939'/>
<id>40a2fdf3155ce2ac123cdf16b05bdb3520b84939</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #5322: autodoc: ``Any`` typehint causes formatting error</title>
<updated>2018-08-22T10:57:27+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2018-08-21T11:05:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=59a766d7d69d072ee5cf90455f52ff0d169b4442'/>
<id>59a766d7d69d072ee5cf90455f52ff0d169b4442</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
