Skip to content

Commit ed9456e

Browse files
committed
Fix rebase
1 parent 3cf7f35 commit ed9456e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,9 +1669,6 @@ public abstract class ErrorMessages {
16691669
public static final TruffleString CANNOT_CREATE_P_OBJECTS = tsLiteral("Cannot create %p objects");
16701670
public static final TruffleString ARROW_ARRAY_ALREADY_RELEASED = tsLiteral("Cannot release already released ArrowArray");
16711671
public static final TruffleString ARROW_SCHEMA_ALREADY_RELEASED = tsLiteral("Cannot release already released ArrowSchema");
1672-
public static final TruffleString CAPI_ISOLATION_CAPPED_AT_D = tsLiteral("There is no available slot for C API isolation. The current limit for concurrent Python contexts accessing the Python C API is %d.");
1673-
public static final TruffleString SYS_PREFIX_MUST_BE_STRING_NOT_P_FOR_CAPI_ISOLATION = tsLiteral("The sys.prefix must be a str, not '%p' when the `IsolateNativeModules' option is used, because it is the base path for searching the relocated C API. Refer to https://www.graalvm.org/latest/reference-manual/python/Native-Extensions for details on native module isolation.");
1674-
public static final TruffleString SYS_PREFIX_MUST_POINT_TO_A_VENV_FOR_CAPI_ISOLATION = tsLiteral("The sys.prefix must point to a venv, not be identical to sys.base_prefix when the `IsolateNativeModules' option is used, because it is the base path for searching and creating the relocated C API and extension modules. Refer to https://www.graalvm.org/latest/reference-manual/python/Native-Extensions for details on native module isolation.");
16751672
public static final TruffleString CAPI_ISOLATION_CAPPED_AT_D = tsLiteral(
16761673
"There is no available slot for C API isolation. The current limit for concurrent Python contexts accessing the Python C API is %d. This can be changed with the" + J_MAX_CAPI_COPIES + " System property.");
16771674
public static final TruffleString SYS_PREFIX_MUST_BE_STRING_NOT_P_FOR_CAPI_ISOLATION = tsLiteral(

0 commit comments

Comments
 (0)