Skip to content

Commit 2bb095b

Browse files
authored
PEP 7
1 parent a2bba45 commit 2bb095b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Python/optimizer_bytecodes.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,9 +1221,11 @@ dummy_func(void) {
12211221
PyTypeObject *type = sym_get_type(container);
12221222
if (type == &PyUnicode_Type ||
12231223
type == &PyList_Type ||
1224-
type == &PyTuple_Type) {
1224+
type == &PyTuple_Type)
1225+
{
12251226
res = sym_new_type(ctx, type);
1226-
} else {
1227+
}
1228+
else {
12271229
res = sym_new_not_null(ctx);
12281230
}
12291231
}

Python/optimizer_cases.c.h

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)