ports: Reformat more C and Python source code.
These files that are reformatted only now fall under the list of files to apply uncrustify/black formatting to. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -1 +1 @@
|
||||
print('frzmpy1')
|
||||
print("frzmpy1")
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# test frozen package with __init__.py
|
||||
print('frzmpy_pkg1.__init__')
|
||||
print("frzmpy_pkg1.__init__")
|
||||
x = 1
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# test frozen package without __init__.py
|
||||
print('frzmpy_pkg2.mod')
|
||||
print("frzmpy_pkg2.mod")
|
||||
|
||||
|
||||
class Foo:
|
||||
x = 1
|
||||
|
||||
@@ -1 +1 @@
|
||||
print('frzstr1')
|
||||
print("frzstr1")
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# test frozen package with __init__.py
|
||||
print('frzstr_pkg1.__init__')
|
||||
print("frzstr_pkg1.__init__")
|
||||
x = 1
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
# test frozen package without __init__.py
|
||||
print('frzstr_pkg2.mod')
|
||||
print("frzstr_pkg2.mod")
|
||||
|
||||
|
||||
class Foo:
|
||||
x = 1
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
freeze_as_mpy('$(MPY_DIR)/tools', 'upip.py')
|
||||
freeze_as_mpy('$(MPY_DIR)/tools', 'upip_utarfile.py', opt=3)
|
||||
freeze_as_mpy("$(MPY_DIR)/tools", "upip.py")
|
||||
freeze_as_mpy("$(MPY_DIR)/tools", "upip_utarfile.py", opt=3)
|
||||
|
||||
Reference in New Issue
Block a user