[pypy-commit] extradoc extradoc: updates

arigo pypy.commits at gmail.com
Tue Aug 30 09:46:15 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: extradoc
Changeset: r5692:617eb3b3e6b3
Date: 2016-08-30 15:46 +0200
http://bitbucket.org/pypy/extradoc/changeset/617eb3b3e6b3/

Log:	updates

diff --git a/planning/py3.5/2016-august-progress.rst b/planning/py3.5/2016-august-progress.rst
--- a/planning/py3.5/2016-august-progress.rst
+++ b/planning/py3.5/2016-august-progress.rst
@@ -15,6 +15,8 @@
 * arigo: look at test failures relaced to os.scandir() or the pathlib
   module, or the enum module
 
+* arigo: look at and fix the .hex() methods
+
 
 Finished
 --------
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
@@ -37,3 +37,6 @@
   But if we call with a read-only buffer, mutate_flag is ignored (instead
   of rejecting a True value)---ioctl(x, y, "foo", True) will not actually
   mutate the string "foo", but the True is completely ignored.
+
+* re.sub(b'y', bytearray(b'a'), bytearray(b'xyz')) -> b'xaz'
+  re.sub(b'y', bytearray(b'\\n'), bytearray(b'xyz')) -> internal TypeError


More information about the pypy-commit mailing list