fix ordered list formatting

This commit is contained in:
Benjamin Peterson 2017-09-06 10:56:06 -07:00
parent 2833cb48ce
commit 5554a20956
1 changed files with 6 additions and 1 deletions

View File

@ -35,13 +35,18 @@ function of the input files contents—it also depends on the volatile metada
mtime, of the source. Thus, the pycs are a barrier to proper reproducibility. mtime, of the source. Thus, the pycs are a barrier to proper reproducibility.
Distributors of Python code are currently stuck with the options of Distributors of Python code are currently stuck with the options of
1. not distributing pycs and losing the caching advantages 1. not distributing pycs and losing the caching advantages
2. distributing pycs and losing reproducibility 2. distributing pycs and losing reproducibility
3. carefully giving all Python source files a deterministic timestamp (see 3. carefully giving all Python source files a deterministic timestamp (see
https://github.com/python/cpython/pull/296) https://github.com/python/cpython/pull/296)
4. doing a complicated mixture of 1. and 2. like generating pycs at installation 4. doing a complicated mixture of 1. and 2. like generating pycs at installation
time time
None of these are very attractive. This PEP proposes a better solution.
None of these options are very attractive. This PEP proposes a better solution.
(Note there are `other problems`_ we do not address here that can make pycs (Note there are `other problems`_ we do not address here that can make pycs
non-deterministic.) non-deterministic.)