cpython/Doc
Julien Palard 245dafca85 bpo-31045: Language switch (#2652) (#3024)
* Doc: Indicate the language

* Renaming version_switcher to switchers (to add language_switcher).

* Adding language switch.

* Doc switchers: Enhance readability of regex parsing versions.

* Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by proper naming.

* Doc switchers: py3k can't reach js, it's redirected server-side by nginx.

* Doc switchers: Examples matching actual regexes.

* Doc switchers: Better fallback on unexisting translated version.

(cherry picked from commit dff9b5f9d6)
2017-08-08 14:14:23 +02:00
..
c-api [2.7] Fix typos in multiple `.rst` files (GH-1668) (#1707) 2017-05-22 20:16:53 +03:00
data
distributing Issue #26014: Guide 2.7 users to the new packaging documentation: 2016-06-05 17:35:43 -07:00
distutils Fix spacing after C++ in documentation 2016-11-05 03:15:20 +00:00
extending [2.7] bpo-28315: Improve code examples in docs (GH-1372) (#1447) 2017-05-03 18:54:28 -07:00
faq Remove outdated FOX from GUI FAQ (GH-2538) 2017-07-04 09:27:48 +03:00
howto [2.7] bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339) (GH-2340) 2017-06-22 21:24:23 -07:00
includes bpo-29165: doc: make extending/newtypes more Python 3 friendly (GH-211) 2017-02-21 21:12:03 +09:00
install Issue #26638: Mask undefined CLI options to defeat new Sphinx warnings 2016-10-30 05:19:02 +00:00
installing [2.7] bpo-30964: Mention ensurepip in package installation docs (GH-2795) 2017-07-21 16:29:44 +10:00
library Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2942) 2017-07-28 19:55:04 -07:00
reference [2.7] Fix a trivial typo in global section (GH-1497) (GH-1882) 2017-05-30 22:08:19 -07:00
tools bpo-31045: Language switch (#2652) (#3024) 2017-08-08 14:14:23 +02:00
tutorial Clarification to the `break` statement (GH-2453) (GH-2459) 2017-06-27 19:36:15 -07:00
using bpo-27470: Improve doc for commandline -3 option 2017-08-04 12:00:10 +10:00
whatsnew Avoid line breaks after hyphens, otherwise they are turned into spaces 2017-01-14 09:53:23 +00:00
Makefile bpo-31045: Language switch (#2652) (#3024) 2017-08-08 14:14:23 +02:00
README.txt remove some copyright notices supserseded by the toplevel ones 2016-01-01 11:53:47 -06:00
about.rst
bugs.rst Clarify that only *documentation* bugs should go to docs@python.org 2015-12-09 01:53:44 -06:00
conf.py Fix warnings due to deprecated latex options (GH-1563) 2017-05-13 09:16:44 -05:00
contents.rst
copyright.rst 2016 will be another year of writing copyrighted code 2016-01-01 10:23:45 -06:00
glossary.rst #25574: backport glossary doc fix about hash and id of user-defined classes. 2016-01-12 11:36:25 +02:00
license.rst ring in 2017 for Python 2017-01-01 22:04:13 -06:00
make.bat [2.7] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2086) 2017-06-11 14:19:39 -05:00

README.txt

Python Documentation README
~~~~~~~~~~~~~~~~~~~~~~~~~~~

This directory contains the reStructuredText (reST) sources to the Python
documentation.  You don't need to build them yourself, prebuilt versions are
available at <https://docs.python.org/dev/download.html>.

Documentation on authoring Python documentation, including information about
both style and markup, is available in the "Documenting Python" chapter of the
developers guide <https://docs.python.org/devguide/documenting.html>.


Building the docs
=================

You need to have Sphinx <http://sphinx-doc.org/> installed; it is the toolset
used to build the docs.  It is not included in this tree, but maintained
separately and available from PyPI <https://pypi.python.org/pypi/Sphinx>.


Using make
----------

A Makefile has been prepared so that on Unix, provided you have installed
Sphinx, you can just run ::

   make html

to build the HTML output files.

On Windows, we try to emulate the Makefile as closely as possible with a
``make.bat`` file.

To use a Python interpreter that's not called ``python``, use the standard
way to set Makefile variables, using e.g. ::

   make html PYTHON=python3

On Windows, set the PYTHON environment variable instead.

To use a specific sphinx-build (something other than ``sphinx-build``), set
the SPHINXBUILD variable.

Available make targets are:

* "clean", which removes all build files.

* "html", which builds standalone HTML files for offline viewing.

* "htmlview", which re-uses the "html" builder, but then opens the main page
  in your default web browser.

* "htmlhelp", which builds HTML files and a HTML Help project file usable to
  convert them into a single Compiled HTML (.chm) file -- these are popular
  under Microsoft Windows, but very handy on every platform.

  To create the CHM file, you need to run the Microsoft HTML Help Workshop
  over the generated project (.hhp) file.  The make.bat script does this for
  you on Windows.

* "latex", which builds LaTeX source files as input to "pdflatex" to produce
  PDF documents.

* "text", which builds a plain text file for each source file.

* "epub", which builds an EPUB document, suitable to be viewed on e-book
  readers.

* "linkcheck", which checks all external references to see whether they are
  broken, redirected or malformed, and outputs this information to stdout as
  well as a plain-text (.txt) file.

* "changes", which builds an overview over all versionadded/versionchanged/
  deprecated items in the current version. This is meant as a help for the
  writer of the "What's New" document.

* "coverage", which builds a coverage overview for standard library modules and
  C API.

* "pydoc-topics", which builds a Python module containing a dictionary with
  plain text documentation for the labels defined in
  `tools/pyspecific.py` -- pydoc needs these to show topic and keyword help.

* "suspicious", which checks the parsed markup for text that looks like
  malformed and thus unconverted reST.

* "check", which checks for frequent markup errors.

* "serve", which serves the build/html directory on port 8000.

* "dist", (Unix only) which creates distributable archives of HTML, text,
  PDF, and EPUB builds.


Without make
------------

Install the Sphinx package and its dependencies from PyPI.

Then, from the ``Doc`` directory, run ::

   sphinx-build -b<builder> . build/<builder>

where ``<builder>`` is one of html, text, latex, or htmlhelp (for explanations
see the make targets above).


Contributing
============

Bugs in the content should be reported to the Python bug tracker at
https://bugs.python.org.

Bugs in the toolset should be reported in the Sphinx bug tracker at
https://www.bitbucket.org/birkenfeld/sphinx/issues/.

You can also send a mail to the Python Documentation Team at docs@python.org,
and we will process your request as soon as possible.

If you want to help the Documentation Team, you are always welcome.  Just send
a mail to docs@python.org.