Author: Armin Rigo <[email protected]>
Branch: extradoc
Changeset: r5760:b4c37569deaa
Date: 2016-12-06 12:21 +0100
http://bitbucket.org/pypy/extradoc/changeset/b4c37569deaa/
Log: another missed encoding case in source files
diff --git a/planning/py3.5/cpython-crashers.rst
b/planning/py3.5/cpython-crashers.rst
--- a/planning/py3.5/cpython-crashers.rst
+++ b/planning/py3.5/cpython-crashers.rst
@@ -231,6 +231,12 @@
print(locals()['__class__']) # 42
print(__class__) # but this is a NameError
+* Follow-up on issue #25388: running ``python x.py`` if x.py contains
+ the following bytes...
+
+ * ``b"#\xfd\n"`` => we get a SyntaxError: Non-UTF-8 code
+ * ``b"# coding: utf-8\n#\xfd\n"`` => we get no error!
+
Other issues of "dubious IMHO" status
-------------------------------------
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit