Author: Raffael Tfirst <[email protected]> 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: _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
