Skip to content

Commit 229b97d

Browse files
committed
String isBuffer should return false
1 parent 585e5e4 commit 229b97d

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/builtins/objects/object/DefaultPythonStringExports.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static LazyPythonClass getLazyPythonClass(@SuppressWarnings("unused") String val
7171

7272
@ExportMessage
7373
static boolean isBuffer(@SuppressWarnings("unused") String str) {
74-
return true;
74+
return false;
7575
}
7676

7777
@ExportMessage

0 commit comments

Comments
 (0)