[Lldb-commits] [PATCH] D131304: [lldb] Remove uses of six module (NFC)

Med Ismail Bennani via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 5 16:04:41 PDT 2022


mib added inline comments.


================
Comment at: lldb/examples/python/scripted_process/scripted_process.py:5
 
- at six.add_metaclass(ABCMeta)
-class ScriptedProcess:
+class ScriptedProcess(metaclass=ABCMeta):
 
----------------
mib wrote:
> nit: no need to specify `metaclass=ABCMeta`, it can just be  `ScriptedProcess(ABC)`
disregard this comment, that's actually the way to do it ...


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D131304/new/

https://reviews.llvm.org/D131304



More information about the lldb-commits mailing list