Re: [PATCH v5 3/5] dts: add parsing utility module

2024-06-14 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, Jun 6, 2024 at 5:34 PM Luca Vizzarro wrote: > > Adds parsing text into a custom dataclass. It provides a new > `TextParser` dataclass to be inherited. This implements the `parse` > method, which combined with the parser functions,

Re: [PATCH v5 3/5] dts: add parsing utility module

2024-06-07 Thread Jeremy Spewock
On Thu, Jun 6, 2024 at 5:34 PM Luca Vizzarro wrote: > > Adds parsing text into a custom dataclass. It provides a new > `TextParser` dataclass to be inherited. This implements the `parse` > method, which combined with the parser functions, it can automatically > parse the value for each field. > >

Re: [PATCH v5 3/5] dts: add parsing utility module

2024-06-07 Thread Juraj Linkeš
On 6. 6. 2024 23:34, Luca Vizzarro wrote: Adds parsing text into a custom dataclass. It provides a new `TextParser` dataclass to be inherited. This implements the `parse` method, which combined with the parser functions, it can automatically parse the value for each field. This new utility wi

[PATCH v5 3/5] dts: add parsing utility module

2024-06-06 Thread Luca Vizzarro
Adds parsing text into a custom dataclass. It provides a new `TextParser` dataclass to be inherited. This implements the `parse` method, which combined with the parser functions, it can automatically parse the value for each field. This new utility will facilitate and simplify the parsing of compl