PX4 / libcxx

WIP effort to get llvm libcxx ported to NuttX
http://nuttx.org/doku.php?id=wiki:nshhowtos:llvm-stdcxx
Other
1 stars 2 forks source link

Modernize python 2 codes #8

Closed cclauss closed 3 years ago

cclauss commented 4 years ago

Legacy print statements are syntax errors in Python 3 but print() function works as expected in both Python 2 and Python 3.

Also, 0600 is a syntax error in Python 3 but 0o600 works as expected in both Python 2 and Python 3.