Skip to content

Commit cb53b55

Browse files
committed
fix style
1 parent f063730 commit cb53b55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/DynamicObjectNativeWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@ static Object doTpNew(PythonManagedClass object, @SuppressWarnings("unused") Pyt
466466
@Cached ConditionProfile profileNewType,
467467
@Cached LookupAttributeInMRONode.Dynamic getAttrNode,
468468
@Cached PCallCapiFunction callGetNewfuncTypeidNode) {
469-
// __new__ is magically a staticmethod for Python types. The tp_new slot lookup expects to get the function
469+
// __new__ is magically a staticmethod for Python types. The tp_new slot lookup expects
470+
// to get the function
470471
Object newFunction = getAttrNode.execute(object, __NEW__);
471472
if (profileNewType.profile(newFunction instanceof PDecoratedMethod)) {
472473
newFunction = ((PDecoratedMethod) newFunction).getCallable();

0 commit comments

Comments
 (0)