<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sphinx-git.git/tests/test_pycode_ast.py, branch 4.4.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>A happy new year!</title>
<updated>2022-01-01T09:45:03+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2022-01-01T09:45:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=b84771dcd2fe1543acbdf87af3b60b323f41e80b'/>
<id>b84771dcd2fe1543acbdf87af3b60b323f41e80b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #9364: autodoc: 1-element tuple on the defarg is wrongly rendered</title>
<updated>2021-06-20T17:43:55+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2021-06-20T17:43:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=b9158b96d261eb6126dbd035aa72c621ddea91e8'/>
<id>b9158b96d261eb6126dbd035aa72c621ddea91e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>A happy new year!</title>
<updated>2021-01-01T04:40:48+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-12-31T17:00:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=f9968594206e538f13fa1c27c065027f10d4ea27'/>
<id>f9968594206e538f13fa1c27c065027f10d4ea27</id>
<content type='text'>
.. note::

   $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \;
   $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
.. note::

   $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \;
   $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
</pre>
</div>
</content>
</entry>
<entry>
<title>pycode: ast.unparse() construct number literals using source code</title>
<updated>2020-10-04T16:08:14+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-10-03T16:45:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=0b32e72635f6e117824b5cba3b8b38254a6a2644'/>
<id>0b32e72635f6e117824b5cba3b8b38254a6a2644</id>
<content type='text'>
Developers can write number literals in several ways. For example,
decimal (1234), hexadecimal (0x1234), octal decimal (0o1234) and so on.
But, AST module don't mind how the numbers written in the code. As a
result, ast.unparse() could not reproduce the original form of number
literals.

This allows to construct number literals as possible using original
source code.

Note: This is only available in Python 3.8+.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Developers can write number literals in several ways. For example,
decimal (1234), hexadecimal (0x1234), octal decimal (0o1234) and so on.
But, AST module don't mind how the numbers written in the code. As a
result, ast.unparse() could not reproduce the original form of number
literals.

This allows to construct number literals as possible using original
source code.

Note: This is only available in Python 3.8+.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #7964: autodoc: Tuple in default value is wrongly rendered</title>
<updated>2020-10-03T03:01:20+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-10-03T03:00:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=785f4d695cfca0eeb537c92166808bc9f187d8c0'/>
<id>785f4d695cfca0eeb537c92166808bc9f187d8c0</id>
<content type='text'>
This implements tuple literal support to sphinx.pycode.ast.unparse().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This implements tuple literal support to sphinx.pycode.ast.unparse().
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #7461: autodoc: empty tuple in type annotation is not shown correctly</title>
<updated>2020-04-12T04:00:04+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-04-12T04:00:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=c8355234ebc63258004ad06da6bcf9dd7b98fac3'/>
<id>c8355234ebc63258004ad06da6bcf9dd7b98fac3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #7304: pycode: Support operators (BinOp, BoolOp and UnaryOp)</title>
<updated>2020-03-14T04:51:49+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-03-14T04:51:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=f6d58bbefc4f57710d6b2875bdd6b1f0533d1f39'/>
<id>f6d58bbefc4f57710d6b2875bdd6b1f0533d1f39</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>py domain: Support lambda functions in function signature</title>
<updated>2020-02-16T03:57:14+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-02-16T03:05:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=76b492aa982c771af0204cf2c0d1212f165aa754'/>
<id>76b492aa982c771af0204cf2c0d1212f165aa754</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add sphinx.pycode.ast.parse() and unparse()</title>
<updated>2020-01-13T04:15:33+00:00</updated>
<author>
<name>Takeshi KOMIYA</name>
<email>i.tkomiya@gmail.com</email>
</author>
<published>2020-01-04T15:00:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/sphinx-git.git/commit/?id=729ffa1fcd800ebbbee25f53afad81f526d1c7f8'/>
<id>729ffa1fcd800ebbbee25f53afad81f526d1c7f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
