rm parens

This commit is contained in:
Benjamin Peterson 2017-09-07 12:48:17 -07:00
parent fa765d2d43
commit e9cf15666f
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ other to "hash-based" pycs introduced by this PEP.
In hash-based pycs, the second field in the pyc header (currently the
"timestamp" field) will become a bitset of flags. We define the lowest flag in
this bitset called ``check_source``. Following the bitset is a 64-bit hash of
the source file. We will use a SipHash_ (with a hardcoded key) of the contents
of the source file. Another a fast hash like MD5 or BLAKE2_ would also work. We
the source file. We will use a SipHash_ with a hardcoded key of the contents of
the source file. Another a fast hash like MD5 or BLAKE2_ would also work. We
choose SipHash because Python already has a builtin implementation of it from
:pep:`456`, although an interface that allows picking the SipHash key must be
exposed to Python.