From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: John Snow <jsnow@redhat.com>
Cc: Cleber Rosa <crosa@redhat.com>, QEMU <qemu-devel@nongnu.org>,
Eduardo Habkost <ehabkost@redhat.com>,
Markus Armbruster <armbru@redhat.com>
Subject: Re: [PATCH v2 00/11] qapi: static typing conversion, pt2
Date: Wed, 4 Nov 2020 13:51:12 +0400 [thread overview]
Message-ID: <CAJ+F1CKOF4OxtWE-ngAh25T8o4PA2VOPTRbbdbFgi4eUV7VzSA@mail.gmail.com> (raw)
In-Reply-To: <ec85be81-7f73-a5ea-7bfc-d8f4b575585f@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 5803 bytes --]
Hi
On Mon, Nov 2, 2020 at 7:41 PM John Snow <jsnow@redhat.com> wrote:
> On 10/26/20 3:42 PM, John Snow wrote:
> > Hi, this series adds static type hints to the QAPI module.
> > This is part two, and covers introspect.py.
> >
> > Part 2: https://gitlab.com/jsnow/qemu/-/tree/python-qapi-cleanup-pt2
> > Everything: https://gitlab.com/jsnow/qemu/-/tree/python-qapi-cleanup-pt6
> >
> > - Requires Python 3.6+
> > - Requires mypy 0.770 or newer (for type analysis only)
> > - Requires pylint 2.6.0 or newer (for lint checking only)
> >
> > Type hints are added in patches that add *only* type hints and change no
> > other behavior. Any necessary changes to behavior to accommodate typing
> > are split out into their own tiny patches.
> >
> > Every commit should pass with:
> > - flake8 qapi/
> > - pylint --rcfile=qapi/pylintrc qapi/
> > - mypy --config-file=qapi/mypy.ini qapi/
> >
> > V2:
> > - Dropped all R-B from previous series; enough has changed.
> > - pt2 is now introspect.py, expr.py is pushed to pt3.
> > - Reworked again to have less confusing (?) type names
> > - Added an assertion to prevent future accidental breakage
> >
>
> Ping!
>
> Patches 1-3: Can be skipped; just enables sphinx to check the docstring
> syntax. Don't worry about these too much, they're just here for you to
> test with.
>
They are interesting, but the rebase version fails. And the error produced
is not exactly friendly:
Exception occurred:
File "/usr/lib/python3.9/site-packages/sphinx/domains/c.py", line 3751,
in resolve_any_xref
return [('c:' + self.role_for_objtype(objtype), retnode)]
TypeError: can only concatenate str (not "NoneType") to str
Could you rebase and split off in a separate series?
Patch 4 adds some small changes, to support:
> Patch 5 adds the type hints.
> Patches 6-11 try to improve the readability of the types and the code.
>
> This was a challenging file to clean up, so I am sure there's lots of
> easy, low-hanging fruit in the review/feedback for me to improve.
>
Nothing obvious to me.
Python typing is fairly new to me, and I don't know the best practices. I
would just take what you did and improve later, if needed.
A wish item before we proceed with more python code cleanups is
documentation and/or automated tests.
Could you add a new make check-python and perhaps document what the new
code-style expectations?
> > John Snow (11):
> > [DO-NOT-MERGE] docs: replace single backtick (`) with double-backtick
> > (``)
> > [DO-NOT-MERGE] docs/sphinx: change default role to "any"
> > [DO-NOT-MERGE] docs: enable sphinx-autodoc for scripts/qapi
> > qapi/introspect.py: add assertions and casts
> > qapi/introspect.py: add preliminary type hint annotations
> > qapi/introspect.py: add _gen_features helper
> > qapi/introspect.py: Unify return type of _make_tree()
> > qapi/introspect.py: replace 'extra' dict with 'comment' argument
> > qapi/introspect.py: create a typed 'Annotated' data strutcure
> > qapi/introspect.py: improve readability of _tree_to_qlit
> > qapi/introspect.py: Add docstring to _tree_to_qlit
> >
> > docs/conf.py | 6 +-
> > docs/devel/build-system.rst | 120 +++++------
> > docs/devel/index.rst | 1 +
> > docs/devel/migration.rst | 59 +++---
> > docs/devel/python/index.rst | 7 +
> > docs/devel/python/qapi.commands.rst | 7 +
> > docs/devel/python/qapi.common.rst | 7 +
> > docs/devel/python/qapi.error.rst | 7 +
> > docs/devel/python/qapi.events.rst | 7 +
> > docs/devel/python/qapi.expr.rst | 7 +
> > docs/devel/python/qapi.gen.rst | 7 +
> > docs/devel/python/qapi.introspect.rst | 7 +
> > docs/devel/python/qapi.main.rst | 7 +
> > docs/devel/python/qapi.parser.rst | 8 +
> > docs/devel/python/qapi.rst | 26 +++
> > docs/devel/python/qapi.schema.rst | 7 +
> > docs/devel/python/qapi.source.rst | 7 +
> > docs/devel/python/qapi.types.rst | 7 +
> > docs/devel/python/qapi.visit.rst | 7 +
> > docs/devel/tcg-plugins.rst | 14 +-
> > docs/devel/testing.rst | 2 +-
> > docs/interop/live-block-operations.rst | 4 +-
> > docs/system/arm/cpu-features.rst | 110 +++++-----
> > docs/system/arm/nuvoton.rst | 2 +-
> > docs/system/s390x/protvirt.rst | 10 +-
> > qapi/block-core.json | 4 +-
> > scripts/qapi/introspect.py | 277 +++++++++++++++++--------
> > scripts/qapi/mypy.ini | 5 -
> > scripts/qapi/schema.py | 2 +-
> > 29 files changed, 487 insertions(+), 254 deletions(-)
> > create mode 100644 docs/devel/python/index.rst
> > create mode 100644 docs/devel/python/qapi.commands.rst
> > create mode 100644 docs/devel/python/qapi.common.rst
> > create mode 100644 docs/devel/python/qapi.error.rst
> > create mode 100644 docs/devel/python/qapi.events.rst
> > create mode 100644 docs/devel/python/qapi.expr.rst
> > create mode 100644 docs/devel/python/qapi.gen.rst
> > create mode 100644 docs/devel/python/qapi.introspect.rst
> > create mode 100644 docs/devel/python/qapi.main.rst
> > create mode 100644 docs/devel/python/qapi.parser.rst
> > create mode 100644 docs/devel/python/qapi.rst
> > create mode 100644 docs/devel/python/qapi.schema.rst
> > create mode 100644 docs/devel/python/qapi.source.rst
> > create mode 100644 docs/devel/python/qapi.types.rst
> > create mode 100644 docs/devel/python/qapi.visit.rst
> >
>
>
>
--
Marc-André Lureau
[-- Attachment #2: Type: text/html, Size: 7715 bytes --]
next prev parent reply other threads:[~2020-11-04 9:52 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-26 19:42 [PATCH v2 00/11] qapi: static typing conversion, pt2 John Snow
2020-10-26 19:42 ` [PATCH v2 01/11] [DO-NOT-MERGE] docs: replace single backtick (`) with double-backtick (``) John Snow
2020-10-26 19:42 ` [PATCH v2 02/11] [DO-NOT-MERGE] docs/sphinx: change default role to "any" John Snow
2020-10-26 19:42 ` [PATCH v2 03/11] [DO-NOT-MERGE] docs: enable sphinx-autodoc for scripts/qapi John Snow
2020-10-26 19:42 ` [PATCH v2 04/11] qapi/introspect.py: add assertions and casts John Snow
2020-11-06 18:59 ` Cleber Rosa
2020-10-26 19:42 ` [PATCH v2 05/11] qapi/introspect.py: add preliminary type hint annotations John Snow
2020-11-07 2:12 ` Cleber Rosa
2020-12-07 21:29 ` John Snow
2020-11-13 16:48 ` Markus Armbruster
2020-12-07 23:48 ` John Snow
2020-12-16 7:51 ` Markus Armbruster
2020-12-16 17:49 ` Eduardo Habkost
2020-12-17 6:51 ` Markus Armbruster
2020-12-17 1:35 ` John Snow
2020-12-17 7:00 ` Markus Armbruster
2020-10-26 19:42 ` [PATCH v2 06/11] qapi/introspect.py: add _gen_features helper John Snow
2020-11-07 4:23 ` Cleber Rosa
2020-11-16 8:47 ` Markus Armbruster
2020-12-07 23:57 ` John Snow
2020-12-15 16:55 ` Markus Armbruster
2020-12-15 18:49 ` John Snow
2020-10-26 19:42 ` [PATCH v2 07/11] qapi/introspect.py: Unify return type of _make_tree() John Snow
2020-11-07 5:08 ` Cleber Rosa
2020-12-15 0:22 ` John Snow
2020-11-16 9:46 ` Markus Armbruster
2020-12-08 0:06 ` John Snow
2020-12-16 6:35 ` Markus Armbruster
2020-10-26 19:42 ` [PATCH v2 08/11] qapi/introspect.py: replace 'extra' dict with 'comment' argument John Snow
2020-11-07 5:10 ` Cleber Rosa
2020-11-16 9:55 ` Markus Armbruster
2020-12-08 0:12 ` John Snow
2020-10-26 19:42 ` [PATCH v2 09/11] qapi/introspect.py: create a typed 'Annotated' data strutcure John Snow
2020-11-07 5:45 ` Cleber Rosa
2020-11-16 10:12 ` Markus Armbruster
2020-12-08 0:21 ` John Snow
2020-12-16 7:08 ` Markus Armbruster
2020-12-17 1:30 ` John Snow
2020-10-26 19:42 ` [PATCH v2 10/11] qapi/introspect.py: improve readability of _tree_to_qlit John Snow
2020-11-07 5:54 ` Cleber Rosa
2020-11-16 10:17 ` Markus Armbruster
2020-12-15 15:25 ` John Snow
2020-10-26 19:42 ` [PATCH v2 11/11] qapi/introspect.py: Add docstring to _tree_to_qlit John Snow
2020-11-07 5:57 ` Cleber Rosa
2020-11-02 15:40 ` [PATCH v2 00/11] qapi: static typing conversion, pt2 John Snow
2020-11-04 9:51 ` Marc-André Lureau [this message]
2020-12-15 15:52 ` John Snow
2020-11-16 13:17 ` introspect.py output representation (was: [PATCH v2 00/11] qapi: static typing conversion, pt2) Markus Armbruster
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAJ+F1CKOF4OxtWE-ngAh25T8o4PA2VOPTRbbdbFgi4eUV7VzSA@mail.gmail.com \
--to=marcandre.lureau@gmail.com \
--cc=armbru@redhat.com \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=jsnow@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).