pyFDT
pyFDT copied to clipboard
Flattened Device Tree Python Module
Results
12
pyFDT issues
Sort by
recently updated
recently updated
newest added
Hi, Since you took some parts of the code from pyfdt (https://github.com/superna9999/pyfdt), please add my copyright line along yours and rename the project into something else. Thanks, Neil
Python 3.12+ throws SyntaxWarning when detectig invalid sequence in regular expressions. in fdt/misc.py - line 66 : def strip_comments(text): text = re.sub('//.*?(\r\n?|\n)|/\*.*?\*/', '\n', text, flags=re.S) return text shall use r'..'...