Skip to content

Commit 3d5558e

Browse files
committed
fix style
1 parent b45127c commit 3d5558e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/object/PythonObjectLibrary.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ public Object asIndex(Object receiver) {
263263
*/
264264
public int asSizeWithState(Object receiver, LazyPythonClass errorType, ThreadState threadState) {
265265
if (threadState == null) {
266-
// this will very likely always raise an integer interpretation error in asIndexWithState
266+
// this will very likely always raise an integer interpretation error in
267+
// asIndexWithState
267268
long result = CastToJavaLongNode.getUncached().execute(asIndexWithState(receiver, null));
268269
int intResult = (int) result;
269270
if (intResult == result) {

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2018, 2019, Oracle and/or its affiliates.
1+
# Copyright (c) 2018, 2020, Oracle and/or its affiliates.
22
# Copyright (c) 2013, Regents of the University of California
33
#
44
# All rights reserved.

0 commit comments

Comments
 (0)