mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r66670 | georg.brandl | 2008-09-28 15:01:36 -0500 (Sun, 28 Sep 2008) | 2 lines Don't show version in title. ........ r66681 | georg.brandl | 2008-09-29 11:51:35 -0500 (Mon, 29 Sep 2008) | 2 lines Update nasm location. ........ r66688 | jesse.noller | 2008-09-29 19:15:45 -0500 (Mon, 29 Sep 2008) | 2 lines issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick Coghlan, Damien Miller ........ r66696 | andrew.kuchling | 2008-09-30 07:31:07 -0500 (Tue, 30 Sep 2008) | 1 line Edits, and add markup ........ r66697 | andrew.kuchling | 2008-09-30 08:00:34 -0500 (Tue, 30 Sep 2008) | 1 line Markup fix ........ r66698 | andrew.kuchling | 2008-09-30 08:00:51 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes ........ r66699 | andrew.kuchling | 2008-09-30 08:01:46 -0500 (Tue, 30 Sep 2008) | 1 line Markup fixes. (optparse.rst probably needs an entire revision pass.) ........
60 lines
2.4 KiB
HTML
60 lines
2.4 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = 'Download' %}
|
|
{% set dlbase = 'http://docs.python.org/ftp/python/doc/' + release %}
|
|
{% block body %}
|
|
|
|
<h1>Download Python {{ release }} Documentation</h1>
|
|
|
|
{% if 'a' in release or 'b' in release or 'c' in release %}
|
|
<p>We don't package the documentation for development releases for download.
|
|
Downloads will be available for the final release.</p>
|
|
|
|
{% else %}
|
|
{% if last_updated %}<p><b>Last updated on: {{ last_updated }}.</b></p>{% endif %}
|
|
|
|
<p>To download an archive containing all the documents for this version of
|
|
Python in one of various formats, follow one of links in this table. The numbers
|
|
in the table are the size of the download files in Kilobytes.</p>
|
|
|
|
<table class="docutils">
|
|
<tr><th>Format</th><th>Packed as .zip</th><th>Packed as .tar.bz2</th></tr>
|
|
<tr><td>PDF (US-Letter paper size)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-letter.zip">Download</a> (ca. 8 MB)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-letter.tar.bz2">Download</a> (ca. 8 MB)</td>
|
|
</tr>
|
|
<tr><td>PDF (A4 paper size)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-a4.zip">Download</a> (ca. 8 MB)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-a4.tar.bz2">Download</a> (ca. 8 MB)</td>
|
|
</tr>
|
|
<tr><td>HTML</td>
|
|
<td><a href="{{ dlbase }}/python-docs-html.zip">Download</a> (ca. 6 MB)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-html.tar.bz2">Download</a> (ca. 4 MB)</td>
|
|
</tr>
|
|
<tr><td>Plain Text</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-text.zip">Download</a> (ca. 2 MB)</td>
|
|
<td><a href="{{ dlbase }}/python-docs-pdf-text.tar.bz2">Download</a> (ca. 1.5 MB)</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<p>These archives contain all the content in the documentation.</p>
|
|
|
|
<h2>Unpacking</h2>
|
|
|
|
<p>Unix users should download the .tar.bz2 archives; these are bzipped tar
|
|
archives and can be handled in the usual way using tar and the bzip2
|
|
program. The <a href="http://www.info-zip.org">InfoZIP</a> unzip program can be
|
|
used to handle the ZIP archives if desired. The .tar.bz2 archives provide the
|
|
best compression and fastest download times.</p>
|
|
|
|
<p>Windows users can use the ZIP archives since those are customary on that
|
|
platform. These are created on Unix using the InfoZIP zip program.</p>
|
|
|
|
|
|
<h2>Problems</h2>
|
|
|
|
<p>If you have comments or suggestions for the Python documentation, please send
|
|
email to <a href="docs@python.org">docs@python.org</a>.</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|