You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/foreign/AccessForeignItemNodes.java
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/ErrorMessages.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,12 @@ public abstract class ErrorMessages {
104
104
publicstaticfinalTruffleStringATTR_S_OF_S_IS_NOT_READABLE = tsLiteral("attribute %s of %s objects is not readable");
105
105
publicstaticfinalTruffleStringATTR_S_OF_S_IS_NOT_WRITABLE = tsLiteral("attribute %s of %s is not writable");
106
106
publicstaticfinalTruffleStringATTR_S_OF_S_OBJ_IS_NOT_WRITABLE = tsLiteral("attribute %s of %s object is not writable");
107
+
publicstaticfinalTruffleStringATTR_S_OF_S_OBJ_IS_NOT_INSERTABLE = tsLiteral("attribute %s of %s object is not insertable");
108
+
publicstaticfinalTruffleStringATTR_S_OF_S_OBJ_IS_NOT_REMOVABLE = tsLiteral("attribute %s of %s object is not removable");
109
+
publicstaticfinalTruffleStringITEM_S_OF_S_OBJ_IS_NOT_READABLE = tsLiteral("item %s of %s object is not readable");
110
+
publicstaticfinalTruffleStringITEM_S_OF_S_OBJ_IS_NOT_WRITABLE = tsLiteral("item %s of %s object is not writable");
111
+
publicstaticfinalTruffleStringITEM_S_OF_S_OBJ_IS_NOT_REMOVABLE = tsLiteral("item %s of %s object is not removable");
112
+
107
113
publicstaticfinalTruffleStringATTR_S_READONLY = tsLiteral("attribute %s is read-only");
108
114
publicstaticfinalTruffleStringATTR_VALUE_MUST_BE_BOOL = tsLiteral("attribute value type must be bool");
109
115
publicstaticfinalTruffleStringB_REQUIRES_BYTES_OR_OBJ_THAT_IMPLEMENTS_S_NOT_P = tsLiteral("%%b requires a bytes-like object, or an object that implements __bytes__, not '%p'");
0 commit comments