All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/25] QAPI patches patches for 2021-04-30
@ 2021-04-30 11:48 Markus Armbruster
  2021-04-30 11:48 ` [PULL 01/25] qapi/expr: Comment cleanup Markus Armbruster
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Markus Armbruster @ 2021-04-30 11:48 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit ccdf06c1db192152ac70a1dd974c624f566cb7d4:

  Open 6.1 development tree (2021-04-30 11:15:40 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2021-04-30

for you to fetch changes up to b54626e0b8f423e91b2e31fa7741e4954cebd2d6:

  qapi/error.py: enable mypy checks (2021-04-30 12:59:54 +0200)

----------------------------------------------------------------
QAPI patches patches for 2021-04-30

----------------------------------------------------------------
John Snow (25):
      qapi/expr: Comment cleanup
      qapi/expr.py: Remove 'info' argument from nested check_if_str
      qapi/expr.py: Check for dict instead of OrderedDict
      qapi/expr.py: constrain incoming expression types
      qapi/expr.py: Add assertion for union type 'check_dict'
      qapi/expr.py: move string check upwards in check_type
      qapi/expr.py: Check type of union and alternate 'data' member
      qapi/expr.py: Add casts in a few select cases
      qapi/expr.py: Modify check_keys to accept any Collection
      qapi/expr.py: add type hint annotations
      qapi/expr.py: Consolidate check_if_str calls in check_if
      qapi/expr.py: Remove single-letter variable
      qapi/expr.py: enable pylint checks
      qapi/expr: Only explicitly prohibit 'Kind' nor 'List' for type names
      qapi/expr.py: Add docstrings
      qapi/expr.py: Use tuples instead of lists for static data
      qapi/expr: Update authorship and copyright information
      qapi/error: Repurpose QAPIError as an abstract base exception class
      qapi/error: Use Python3-style super()
      qapi/error: Make QAPISourceError 'col' parameter optional
      qapi/error: assert QAPISourceInfo is not None
      qapi/error.py: move QAPIParseError to parser.py
      qapi/error.py: enable pylint checks
      qapi/error: Add type hints
      qapi/error.py: enable mypy checks

 docs/sphinx/qapidoc.py                        |   3 +-
 scripts/qapi/error.py                         |  51 +--
 scripts/qapi/expr.py                          | 444 +++++++++++++++++++++-----
 scripts/qapi/mypy.ini                         |  10 -
 scripts/qapi/parser.py                        |  14 +-
 scripts/qapi/pylintrc                         |   4 +-
 scripts/qapi/schema.py                        |   4 +-
 tests/qapi-schema/alternate-data-invalid.err  |   2 +
 tests/qapi-schema/alternate-data-invalid.json |   4 +
 tests/qapi-schema/alternate-data-invalid.out  |   0
 tests/qapi-schema/meson.build                 |   2 +
 tests/qapi-schema/union-invalid-data.err      |   2 +
 tests/qapi-schema/union-invalid-data.json     |   6 +
 tests/qapi-schema/union-invalid-data.out      |   0
 14 files changed, 432 insertions(+), 114 deletions(-)
 create mode 100644 tests/qapi-schema/alternate-data-invalid.err
 create mode 100644 tests/qapi-schema/alternate-data-invalid.json
 create mode 100644 tests/qapi-schema/alternate-data-invalid.out
 create mode 100644 tests/qapi-schema/union-invalid-data.err
 create mode 100644 tests/qapi-schema/union-invalid-data.json
 create mode 100644 tests/qapi-schema/union-invalid-data.out

-- 
2.26.3



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2021-04-30 18:27 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-30 11:48 [PULL 00/25] QAPI patches patches for 2021-04-30 Markus Armbruster
2021-04-30 11:48 ` [PULL 01/25] qapi/expr: Comment cleanup Markus Armbruster
2021-04-30 11:48 ` [PULL 02/25] qapi/expr.py: Remove 'info' argument from nested check_if_str Markus Armbruster
2021-04-30 11:48 ` [PULL 03/25] qapi/expr.py: Check for dict instead of OrderedDict Markus Armbruster
2021-04-30 11:48 ` [PULL 04/25] qapi/expr.py: constrain incoming expression types Markus Armbruster
2021-04-30 11:48 ` [PULL 05/25] qapi/expr.py: Add assertion for union type 'check_dict' Markus Armbruster
2021-04-30 11:48 ` [PULL 06/25] qapi/expr.py: move string check upwards in check_type Markus Armbruster
2021-04-30 11:48 ` [PULL 07/25] qapi/expr.py: Check type of union and alternate 'data' member Markus Armbruster
2021-04-30 11:48 ` [PULL 08/25] qapi/expr.py: Add casts in a few select cases Markus Armbruster
2021-04-30 11:48 ` [PULL 09/25] qapi/expr.py: Modify check_keys to accept any Collection Markus Armbruster
2021-04-30 11:48 ` [PULL 10/25] qapi/expr.py: add type hint annotations Markus Armbruster
2021-04-30 11:48 ` [PULL 11/25] qapi/expr.py: Consolidate check_if_str calls in check_if Markus Armbruster
2021-04-30 11:48 ` [PULL 12/25] qapi/expr.py: Remove single-letter variable Markus Armbruster
2021-04-30 11:48 ` [PULL 13/25] qapi/expr.py: enable pylint checks Markus Armbruster
2021-04-30 11:48 ` [PULL 14/25] qapi/expr: Only explicitly prohibit 'Kind' nor 'List' for type names Markus Armbruster
2021-04-30 11:48 ` [PULL 15/25] qapi/expr.py: Add docstrings Markus Armbruster
2021-04-30 11:48 ` [PULL 16/25] qapi/expr.py: Use tuples instead of lists for static data Markus Armbruster
2021-04-30 11:48 ` [PULL 17/25] qapi/expr: Update authorship and copyright information Markus Armbruster
2021-04-30 11:48 ` [PULL 18/25] qapi/error: Repurpose QAPIError as an abstract base exception class Markus Armbruster
2021-04-30 11:48 ` [PULL 19/25] qapi/error: Use Python3-style super() Markus Armbruster
2021-04-30 11:48 ` [PULL 20/25] qapi/error: Make QAPISourceError 'col' parameter optional Markus Armbruster
2021-04-30 11:48 ` [PULL 21/25] qapi/error: assert QAPISourceInfo is not None Markus Armbruster
2021-04-30 11:48 ` [PULL 22/25] qapi/error.py: move QAPIParseError to parser.py Markus Armbruster
2021-04-30 11:48 ` [PULL 23/25] qapi/error.py: enable pylint checks Markus Armbruster
2021-04-30 11:48 ` [PULL 24/25] qapi/error: Add type hints Markus Armbruster
2021-04-30 11:48 ` [PULL 25/25] qapi/error.py: enable mypy checks Markus Armbruster
2021-04-30 17:51 ` [PULL 00/25] QAPI patches patches for 2021-04-30 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.