-
-
Save t-8ch/c9ec904eaf45e675341f to your computer and use it in GitHub Desktop.
surrogates in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Works with CPython, PyPy 2 (Py version 2) | |
# Blows up with PyPy 2 (Py version 3), Jython (Py version 2) | |
u"\uD800" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Works with CPython2, PyPy 2 (Py version 2) | |
# Blows up with CPython3, PyPy 2 (Py version 3), Jython (Py version 2) | |
print(u"\uD800") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment