From 5fced04ba58a14c370c60c275302519de5e15893 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Tue, 26 Feb 2019 20:39:44 -0800 Subject: [PATCH 1/1] vpp_papi.py: Change VppEnum from explicit metaclass to metaclass wrapper/decorator. Change-Id: Iab41bb972e3c7ec005a1a13d5a25f654ae8c3932 Signed-off-by: Paul Vinciguerra --- src/vpp-api/python/vpp_papi/vpp_papi.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/vpp-api/python/vpp_papi/vpp_papi.py b/src/vpp-api/python/vpp_papi/vpp_papi.py index 9c4ede90d48..2b73023025b 100644 --- a/src/vpp-api/python/vpp_papi/vpp_papi.py +++ b/src/vpp-api/python/vpp_papi/vpp_papi.py @@ -21,6 +21,7 @@ import os import logging import collections import struct +import functools import json import threading import fnmatch @@ -38,17 +39,23 @@ else: import queue as queue +def metaclass(metaclass): + @functools.wraps(metaclass) + def wrapper(cls): + return metaclass(cls.__name__, cls.__bases__, cls.__dict__.copy()) + + return wrapper + + class VppEnumType(type): def __getattr__(cls, name): t = vpp_get_type(name) return t.enum -# Python3 -# class VppEnum(metaclass=VppEnumType): -# pass +@metaclass(VppEnumType) class VppEnum(object): - __metaclass__ = VppEnumType + pass def vpp_atexit(vpp_weakref): -- 2.16.6