Skip to content

Commit 7118f9e

Browse files
committed
fix style
1 parent 96523dd commit 7118f9e

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

graalpython/com.oracle.graal.python.benchmarks/python/micro/bytecode-benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/lib/PyObjectGetIter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/lib/PyObjectSetItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* The Universal Permissive License (UPL), Version 1.0

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/PGuards.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,8 @@ public static boolean cannotBeOverridden(Object object, GetClassNode getClassNod
593593

594594
/**
595595
* Tests if the class of this Python object is a builtin class. This method is supposed to be
596-
* used for builtin types that do not support __class__ assignment at all, so we can safely
597-
* read the initialPythonClass field and assume that is the current class as well.
596+
* used for builtin types that do not support __class__ assignment at all, so we can safely read
597+
* the initialPythonClass field and assume that is the current class as well.
598598
*/
599599
public static boolean cannotBeOverriddenForImmutableType(PythonObject object) {
600600
Object clazz = object.getInitialPythonClass();

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/bytecode/PBytecodeRootNode.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2382,8 +2382,9 @@ private void unboxVariables(Frame localFrame) {
23822382
}
23832383

23842384
@InliningCutoff
2385-
private void reraiseUnhandledException(VirtualFrame virtualFrame, Frame localFrame, int initialStackTop, MutableLoopData mutableData, boolean isGeneratorOrCoroutine, final int bciSlot, final int beginBci,
2386-
Throwable e, PException pe, boolean tracingEnabled, boolean profilingEnabled) {
2385+
private void reraiseUnhandledException(VirtualFrame virtualFrame, Frame localFrame, int initialStackTop, MutableLoopData mutableData,
2386+
boolean isGeneratorOrCoroutine, final int bciSlot, final int beginBci, Throwable e, PException pe,
2387+
boolean tracingEnabled, boolean profilingEnabled) {
23872388
// For tracebacks
23882389
setCurrentBci(virtualFrame, bciSlot, beginBci);
23892390
if (isGeneratorOrCoroutine) {

0 commit comments

Comments
 (0)