Skip to content

Commit b48420b

Browse files
committed
use the object model correctly
1 parent b8bc521 commit b48420b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/attributes/ReadAttributeFromDynamicObjectNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected Object readDirect(DynamicObject dynamicObject, Object key,
133133
if (loc == null) {
134134
return PNone.NO_VALUE;
135135
} else {
136-
return loc.get(dynamicObject);
136+
return loc.get(dynamicObject, cachedShape);
137137
}
138138
}
139139

0 commit comments

Comments
 (0)