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
os version: win7 64bit python version: 2.7.13 pyjnius version: 1.1.1 jdk version: 1.8.0_111 source code
# coding:utf-8 from __future__ import absolute_import from __future__ import division from __future__ import print_function from __future__ import unicode_literals from jnius import autoclass Stack = autoclass('java.util.Stack') stack = Stack() stack.push('hello') stack.push('world') print(stack.pop()) print(stack.pop())
The output is sth like this:
Y� ý�
If delete this line,from future import unicode_literals, the output is right, that is
world hello
The text was updated successfully, but these errors were encountered:
Mm, your example works fine for me as-is .. (?)
Sorry, something went wrong.
Happening to me as well both with python3.6 or 2.7 if importing unicode literals.
Seems to replicate this? knappador/kivy-toaster#1
Confirmed this bug with Python 3.6.
Should this be a duplicate of #300?
Yup, duplicate.
No branches or pull requests
os version: win7 64bit
python version: 2.7.13
pyjnius version: 1.1.1
jdk version: 1.8.0_111
source code
The output is sth like this:
If delete this line,from future import unicode_literals, the output is right, that is
The text was updated successfully, but these errors were encountered: