[pypy-commit] pypy py3.5-async: Add comment explaining change of MAGIC number in sre module

raffael_t pypy.commits at gmail.com
Wed Jul 20 08:59:38 EDT 2016


Author: Raffael Tfirst <raffael.tfirst at gmail.com>
Branch: py3.5-async
Changeset: r85779:5dbcd8246ec7
Date: 2016-07-20 14:59 +0200
http://bitbucket.org/pypy/pypy/changeset/5dbcd8246ec7/

Log:	Add comment explaining change of MAGIC number in sre module

diff --git a/rpython/rlib/rsre/rsre_char.py b/rpython/rlib/rsre/rsre_char.py
--- a/rpython/rlib/rsre/rsre_char.py
+++ b/rpython/rlib/rsre/rsre_char.py
@@ -24,6 +24,7 @@
 #### Constants
 
 # Identifying as _sre from Python 2.3 and onwards (at least up to 2.7)
+# UPDATE: change was necessary for Python 3.4 changes
 MAGIC = 20140917
 
 if sys.maxint > 2**32:


More information about the pypy-commit mailing list