1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

style: Various other PEP8 fixes in Python files

Done with `autopep8 --select=E7`, fixes:

- E701 - Put colon-separated compound statement on separate lines.
- E702 - Put semicolon-separated compound statement on separate lines.
- E703 - Put semicolon-separated compound statement on separate lines.
- E711 - Fix comparison with None.
- E712 - Fix (trivial case of) comparison with boolean.
- E713 - Fix (trivial case of) non-membership check.
- E721 - Fix various deprecated code (via lib2to3).
This commit is contained in:
Rémi Verschelde
2016-11-01 00:24:30 +01:00
parent 817dd7ccbb
commit f34151ff0f
25 changed files with 370 additions and 369 deletions

View File

@@ -1,71 +1,71 @@
import os;
import glob;
import string;
import os
import glob
import string
# Generate include files
f = open("theme_data.h", "wb")
f.write("// THIS FILE HAS BEEN AUTOGENERATED, DONT EDIT!!\n");
f.write("// THIS FILE HAS BEEN AUTOGENERATED, DONT EDIT!!\n")
f.write("\n\n");
f.write("\n\n")
# Generate png image block
pixmaps = glob.glob("*.png");
pixmaps = glob.glob("*.png")
pixmaps.sort();
pixmaps.sort()
f.write("\n\n\n");
f.write("\n\n\n")
for x in pixmaps:
var_str = x[:-4] + "_png";
var_str = x[:-4] + "_png"
f.write("static const unsigned char " + var_str + "[]={\n");
f.write("static const unsigned char " + var_str + "[]={\n")
pngf = open(x, "rb");
pngf = open(x, "rb")
b = pngf.read(1);
b = pngf.read(1)
while(len(b) == 1):
f.write(hex(ord(b)))
b = pngf.read(1);
b = pngf.read(1)
if (len(b) == 1):
f.write(",")
f.write("\n};\n\n\n");
pngf.close();
f.write("\n};\n\n\n")
pngf.close()
# Generate shaders block
shaders = glob.glob("*.gsl")
shaders.sort();
shaders.sort()
f.write("\n\n\n");
f.write("\n\n\n")
for x in shaders:
var_str = x[:-4] + "_shader_code";
var_str = x[:-4] + "_shader_code"
f.write("static const char *" + var_str + "=\n");
f.write("static const char *" + var_str + "=\n")
sf = open(x, "rb");
sf = open(x, "rb")
b = sf.readline();
b = sf.readline()
while(b != ""):
if (b.endswith("\r\n")):
b = b[:-2]
if (b.endswith("\n")):
b = b[:-1]
f.write(" \"" + b)
b = sf.readline();
b = sf.readline()
if (b != ""):
f.write("\"\n")
f.write("\";\n\n\n");
sf.close();
f.write("\";\n\n\n")
sf.close()
f.close();
f.close()