Skip to content

Commit 3fa5d86

Browse files
committed
keep old styling
1 parent 1890739 commit 3fa5d86

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Python/optimizer_bytecodes.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ dummy_func(void) {
450450
op(_UNARY_NEGATIVE, (value -- res)) {
451451
if (sym_is_compact_int(value)) {
452452
res = sym_new_compact_int(ctx);
453-
} else {
453+
}
454+
else {
454455
PyTypeObject *type = sym_get_type(value);
455456
if (type == &PyLong_Type || type == &PyFloat_Type) {
456457
res = sym_new_type(ctx, type);

Python/optimizer_cases.c.h

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

0 commit comments

Comments
 (0)