We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
报错信息是: java.lang.IllegalArgumentException: Cannot create PyString with non-byte value
搜索了一下,找到相关解决方案,将Core.kt里的 val input=textArea.text 改为 val input=Py.newStringOrUnicode(textArea.text)
然后下面使用input变量时,由PyString(input)改为 input即可。
The text was updated successfully, but these errors were encountered:
1bf2c51
No branches or pull requests
报错信息是:
java.lang.IllegalArgumentException: Cannot create PyString with non-byte value
搜索了一下,找到相关解决方案,将Core.kt里的
val input=textArea.text
改为
val input=Py.newStringOrUnicode(textArea.text)
然后下面使用input变量时,由PyString(input)改为 input即可。
The text was updated successfully, but these errors were encountered: