diff options
author | Markus Armbruster <armbru@redhat.com> | 2017-10-02 16:13:32 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-12-20 19:18:33 +0100 |
commit | 67ab1ce9263f77b352faea1104f0ebc2e50a3d42 (patch) | |
tree | 5d9d0232ba18015c7220be8450b86c0269ec3bd3 /scripts/qapi.py | |
parent | c6a1a98b4222114fbebbb40814ba765ac4530937 (diff) | |
download | qemu-67ab1ce9263f77b352faea1104f0ebc2e50a3d42.zip qemu-67ab1ce9263f77b352faea1104f0ebc2e50a3d42.tar.gz qemu-67ab1ce9263f77b352faea1104f0ebc2e50a3d42.tar.bz2 |
qapi: Stop rejecting #optional
Commit 1d8bda1 got rid of #optional tags, and added a check to keep
them from getting added back, to make sure patches then in flight
don't add them back. It's been six months, time to drop that check.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20171002141341.24616-3-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'scripts/qapi.py')
-rw-r--r-- | scripts/qapi.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/qapi.py b/scripts/qapi.py index 62dc52e..dc92bca 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -234,10 +234,6 @@ class QAPIDoc(object): raise QAPIParseError(self.parser, "'%s' not allowed in free-form documentation" % match.group(1)) - # TODO Drop this once the dust has settled - if (isinstance(self.section, QAPIDoc.ArgSection) - and '#optional' in line): - raise QAPISemError(self.info, "Please drop the #optional tag") self.section.append(line) def connect_member(self, member): |