diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-08-01 23:56:39 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-08-01 23:56:39 (GMT) |
commit | f37c0c73fef929a3bf3239bc10fd8ca0d63bcd9c (patch) | |
tree | 92f62606616dfb4ef4e73af1377e9f38683d49fe | |
parent | 4c1730db7c8735d2424471e63a2fa7d690192899 (diff) | |
download | cpython-f37c0c73fef929a3bf3239bc10fd8ca0d63bcd9c.zip cpython-f37c0c73fef929a3bf3239bc10fd8ca0d63bcd9c.tar.gz cpython-f37c0c73fef929a3bf3239bc10fd8ca0d63bcd9c.tar.bz2 |
Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py
-rw-r--r-- | Doc/distutils/uploading.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/distutils/uploading.rst b/Doc/distutils/uploading.rst index 1b3cb58..bfb392e 100644 --- a/Doc/distutils/uploading.rst +++ b/Doc/distutils/uploading.rst @@ -73,4 +73,8 @@ check the ``long_description`` from the command line:: $ python setup.py --long-description | rst2html.py > output.html :mod:`docutils` will display a warning if there's something wrong with your -syntax. +syntax. Because PyPI applies additional checks (e.g. by passing ``--no-raw`` +to ``rst2html.py`` in the command above), being able to run the command above +without warnings does not guarantee that PyPI will convert the content +successfully. + |