Skip to content

Commit 5b38be9

Browse files
author
ayla
committed
Upload python 3.4.3, new and modified files.
1 parent 66144f3 commit 5b38be9

File tree

1,824 files changed

+237905
-88077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,824 files changed

+237905
-88077
lines changed

Doc/Makefile

+27-54
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,23 @@
55

66
# You can set these variables from the command line.
77
PYTHON = python
8-
SVNROOT = http://svn.python.org/projects
9-
SPHINXOPTS =
8+
SPHINXBUILD = sphinx-build
109
PAPER =
1110
SOURCES =
12-
DISTVERSION = $(shell $(PYTHON) tools/sphinxext/patchlevel.py)
11+
DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
1312

1413
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
1514
$(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
1615

17-
.PHONY: help checkout update build html htmlhelp latex text changes linkcheck \
16+
.PHONY: help build html htmlhelp latex text changes linkcheck \
1817
suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
1918
autobuild-dev autobuild-stable
2019

2120
help:
2221
@echo "Please use \`make <target>' where <target> is one of"
2322
@echo " clean to remove build files"
24-
@echo " update to update build tools"
2523
@echo " html to make standalone HTML files"
24+
@echo " htmlview to open the index page built by the html target in your browser"
2625
@echo " htmlhelp to make HTML files and a HTML help project"
2726
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
2827
@echo " text to make plain text files"
@@ -37,30 +36,8 @@ help:
3736
@echo " check to run a check for frequent markup errors"
3837
@echo " serve to serve the documentation on the localhost (8000)"
3938

40-
# Note: if you update versions here, do the same in make.bat and README.txt
41-
checkout:
42-
@if [ ! -d tools/sphinx ]; then \
43-
echo "Checking out Sphinx..."; \
44-
svn checkout $(SVNROOT)/external/Sphinx-1.2/sphinx tools/sphinx; \
45-
fi
46-
@if [ ! -d tools/docutils ]; then \
47-
echo "Checking out Docutils..."; \
48-
svn checkout $(SVNROOT)/external/docutils-0.11/docutils tools/docutils; \
49-
fi
50-
@if [ ! -d tools/jinja2 ]; then \
51-
echo "Checking out Jinja..."; \
52-
svn checkout $(SVNROOT)/external/Jinja-2.3.1/jinja2 tools/jinja2; \
53-
fi
54-
@if [ ! -d tools/pygments ]; then \
55-
echo "Checking out Pygments..."; \
56-
svn checkout $(SVNROOT)/external/Pygments-1.6/pygments tools/pygments; \
57-
fi
58-
59-
update: clean checkout
60-
61-
build: checkout
62-
mkdir -p build/$(BUILDER) build/doctrees
63-
$(PYTHON) tools/sphinx-build.py $(ALLSPHINXOPTS)
39+
build:
40+
$(SPHINXBUILD) $(ALLSPHINXOPTS)
6441
@echo
6542

6643
html: BUILDER = html
@@ -91,24 +68,30 @@ changes: build
9168
@echo "The overview file is in build/changes."
9269

9370
linkcheck: BUILDER = linkcheck
94-
linkcheck: build
95-
@echo "Link check complete; look for any errors in the above output" \
96-
"or in build/$(BUILDER)/output.txt"
71+
linkcheck:
72+
@$(MAKE) build BUILDER=$(BUILDER) || { \
73+
echo "Link check complete; look for any errors in the above output" \
74+
"or in build/$(BUILDER)/output.txt"; \
75+
false; }
9776

9877
suspicious: BUILDER = suspicious
99-
suspicious: build
100-
@echo "Suspicious check complete; look for any errors in the above output" \
101-
"or in build/$(BUILDER)/suspicious.csv. If all issues are false" \
102-
"positives, append that file to tools/sphinxext/susp-ignored.csv."
78+
suspicious:
79+
@$(MAKE) build BUILDER=$(BUILDER) || { \
80+
echo "Suspicious check complete; look for any errors in the above output" \
81+
"or in build/$(BUILDER)/suspicious.csv. If all issues are false" \
82+
"positives, append that file to tools/susp-ignored.csv."; \
83+
false; }
10384

10485
coverage: BUILDER = coverage
10586
coverage: build
10687
@echo "Coverage finished; see c.txt and python.txt in build/coverage"
10788

10889
doctest: BUILDER = doctest
109-
doctest: build
110-
@echo "Testing of doctests in the sources finished, look at the" \
111-
"results in build/doctest/output.txt"
90+
doctest:
91+
@$(MAKE) build BUILDER=$(BUILDER) || { \
92+
echo "Testing of doctests in the sources finished, look at the" \
93+
"results in build/doctest/output.txt"; \
94+
false; }
11295

11396
pydoc-topics: BUILDER = pydoc-topics
11497
pydoc-topics: build
@@ -120,10 +103,6 @@ htmlview: html
120103

121104
clean:
122105
-rm -rf build/*
123-
-rm -rf tools/sphinx
124-
-rm -rf tools/pygments
125-
-rm -rf tools/jinja2
126-
-rm -rf tools/docutils
127106

128107
dist:
129108
rm -rf dist
@@ -163,16 +142,10 @@ dist:
163142
cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
164143
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
165144

166-
# archive the epub build
145+
# copy the epub build
167146
rm -rf build/epub
168147
make epub
169-
mkdir -p dist/python-$(DISTVERSION)-docs-epub
170-
cp -pPR build/epub/*.epub dist/python-$(DISTVERSION)-docs-epub/
171-
tar -C dist -cf dist/python-$(DISTVERSION)-docs-epub.tar python-$(DISTVERSION)-docs-epub
172-
bzip2 -9 -k dist/python-$(DISTVERSION)-docs-epub.tar
173-
(cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-epub.zip python-$(DISTVERSION)-docs-epub)
174-
rm -r dist/python-$(DISTVERSION)-docs-epub
175-
rm dist/python-$(DISTVERSION)-docs-epub.tar
148+
cp -pPR build/epub/Python.epub dist/python-$(DISTVERSION)-docs.epub
176149

177150
check:
178151
$(PYTHON) tools/rstlint.py -i tools
@@ -184,17 +157,17 @@ serve:
184157

185158
# for development releases: always build
186159
autobuild-dev:
187-
make update
188160
make dist SPHINXOPTS='-A daily=1 -A versionswitcher=1'
189161
-make suspicious
190162

191163
# for quick rebuilds (HTML only)
192164
autobuild-html:
193165
make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
194166

195-
# for stable releases: only build if not in pre-release stage (alpha, beta, rc)
167+
# for stable releases: only build if not in pre-release stage (alpha, beta)
168+
# release candidate downloads are okay, since the stable tree can be in that stage
196169
autobuild-stable:
197-
@case $(DISTVERSION) in *[abc]*) \
170+
@case $(DISTVERSION) in *[ab]*) \
198171
echo "Not building; $(DISTVERSION) is not a release version."; \
199172
exit 1;; \
200173
esac

Doc/README.txt

+55-44
Original file line numberDiff line numberDiff line change
@@ -3,90 +3,101 @@ Python Documentation README
33

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

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

1212

1313
Building the docs
1414
=================
1515

16-
You need to have Python 2 installed; the toolset used to build the
17-
docs is written in Python. It is called *Sphinx*, it is not included in this
18-
tree, but maintained separately. Also needed are the docutils, supplying the
19-
base markup that Sphinx uses, Jinja, a templating engine, and optionally
20-
Pygments, a code highlighter.
16+
You need to have Sphinx <http://sphinx-doc.org/> installed; it is the toolset
17+
used to build the docs. It is not included in this tree, but maintained
18+
separately and available from PyPI <https://pypi.python.org/pypi/Sphinx>.
2119

2220

2321
Using make
2422
----------
2523

26-
Luckily, a Makefile has been prepared so that on Unix, provided you have
27-
installed Python and Subversion, you can just run ::
24+
A Makefile has been prepared so that on Unix, provided you have installed
25+
Sphinx, you can just run ::
2826

2927
make html
3028

31-
to check out the necessary toolset in the `tools/` subdirectory and build the
32-
HTML output files. To view the generated HTML, point your favorite browser at
33-
the top-level index `build/html/index.html` after running "make".
29+
to build the HTML output files.
3430

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

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

41-
make html PYTHON=/usr/bin/python2.5
37+
make html PYTHON=python3
38+
39+
On Windows, set the PYTHON environment variable instead.
40+
41+
To use a specific sphinx-build (something other than ``sphinx-build``), set
42+
the SPHINXBUILD variable.
4243

4344
Available make targets are:
4445

45-
* "html", which builds standalone HTML files for offline viewing.
46+
* "clean", which removes all build files.
47+
48+
* "html", which builds standalone HTML files for offline viewing.
49+
50+
* "htmlview", which re-uses the "html" builder, but then opens the main page
51+
in your default web browser.
52+
53+
* "htmlhelp", which builds HTML files and a HTML Help project file usable to
54+
convert them into a single Compiled HTML (.chm) file -- these are popular
55+
under Microsoft Windows, but very handy on every platform.
56+
57+
To create the CHM file, you need to run the Microsoft HTML Help Workshop
58+
over the generated project (.hhp) file. The make.bat script does this for
59+
you on Windows.
4660

47-
* "htmlhelp", which builds HTML files and a HTML Help project file usable to
48-
convert them into a single Compiled HTML (.chm) file -- these are popular
49-
under Microsoft Windows, but very handy on every platform.
61+
* "latex", which builds LaTeX source files as input to "pdflatex" to produce
62+
PDF documents.
5063

51-
To create the CHM file, you need to run the Microsoft HTML Help Workshop over
52-
the generated project (.hhp) file.
64+
* "text", which builds a plain text file for each source file.
5365

54-
* "latex", which builds LaTeX source files as input to "pdflatex" to produce
55-
PDF documents.
66+
* "epub", which builds an EPUB document, suitable to be viewed on e-book
67+
readers.
5668

57-
* "text", which builds a plain text file for each source file.
69+
* "linkcheck", which checks all external references to see whether they are
70+
broken, redirected or malformed, and outputs this information to stdout as
71+
well as a plain-text (.txt) file.
5872

59-
* "epub", which builds an EPUB document, suitable to be viewed on e-book
60-
readers.
73+
* "changes", which builds an overview over all versionadded/versionchanged/
74+
deprecated items in the current version. This is meant as a help for the
75+
writer of the "What's New" document.
6176

62-
* "linkcheck", which checks all external references to see whether they are
63-
broken, redirected or malformed, and outputs this information to stdout as
64-
well as a plain-text (.txt) file.
77+
* "coverage", which builds a coverage overview for standard library modules and
78+
C API.
6579

66-
* "changes", which builds an overview over all versionadded/versionchanged/
67-
deprecated items in the current version. This is meant as a help for the
68-
writer of the "What's New" document.
80+
* "pydoc-topics", which builds a Python module containing a dictionary with
81+
plain text documentation for the labels defined in
82+
`tools/pyspecific.py` -- pydoc needs these to show topic and keyword help.
6983

70-
* "coverage", which builds a coverage overview for standard library modules and
71-
C API.
84+
* "suspicious", which checks the parsed markup for text that looks like
85+
malformed and thus unconverted reST.
7286

73-
* "pydoc-topics", which builds a Python module containing a dictionary with
74-
plain text documentation for the labels defined in
75-
`tools/sphinxext/pyspecific.py` -- pydoc needs these to show topic and
76-
keyword help.
87+
* "check", which checks for frequent markup errors.
7788

78-
* "suspicious", which checks the parsed markup for text that looks like
79-
malformed and thus unconverted reST.
89+
* "serve", which serves the build/html directory on port 8000.
8090

81-
A "make update" updates the Subversion checkouts in `tools/`.
91+
* "dist", (Unix only) which creates distributable archives of HTML, text,
92+
PDF, and EPUB builds.
8293

8394

8495
Without make
8596
------------
8697

8798
Install the Sphinx package and its dependencies from PyPI.
8899

89-
Then, from the ``Docs`` directory, run ::
100+
Then, from the ``Doc`` directory, run ::
90101

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

@@ -98,10 +109,10 @@ Contributing
98109
============
99110

100111
Bugs in the content should be reported to the Python bug tracker at
101-
http://bugs.python.org.
112+
https://bugs.python.org.
102113

103114
Bugs in the toolset should be reported in the Sphinx bug tracker at
104-
http://www.bitbucket.org/birkenfeld/sphinx/issues/.
115+
https://www.bitbucket.org/birkenfeld/sphinx/issues/.
105116

106117
You can also send a mail to the Python Documentation Team at [email protected],
107118
and we will process your request as soon as possible.
@@ -117,7 +128,7 @@ The Python source is copyrighted, but you can freely use and copy it
117128
as long as you don't change or remove the copyright notice:
118129

119130
----------------------------------------------------------------------
120-
Copyright (c) 2000-2014 Python Software Foundation.
131+
Copyright (c) 2000-2015 Python Software Foundation.
121132
All rights reserved.
122133

123134
Copyright (c) 2000 BeOpen.com.

Doc/about.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ About these documents
66
These documents are generated from `reStructuredText`_ sources by `Sphinx`_, a
77
document processor specifically written for the Python documentation.
88

9-
.. _reStructuredText: http://docutils.sf.net/rst.html
9+
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
1010
.. _Sphinx: http://sphinx-doc.org/
1111

1212
.. In the online version of these documents, you can submit comments and suggest
@@ -21,7 +21,7 @@ Many thanks go to:
2121

2222
* Fred L. Drake, Jr., the creator of the original Python documentation toolset
2323
and writer of much of the content;
24-
* the `Docutils <http://docutils.sf.net/>`_ project for creating
24+
* the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
2525
reStructuredText and the Docutils suite;
2626
* Fredrik Lundh for his `Alternative Python Reference
2727
<http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good

Doc/bugs.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Using the Python issue tracker
2929
==============================
3030

3131
Bug reports for Python itself should be submitted via the Python Bug Tracker
32-
(http://bugs.python.org/). The bug tracker offers a Web form which allows
32+
(https://bugs.python.org/). The bug tracker offers a Web form which allows
3333
pertinent information to be entered and submitted to the developers.
3434

3535
The first step in filing a report is to determine whether the problem has
@@ -68,7 +68,7 @@ taken on the bug.
6868
Article which goes into some detail about how to create a useful bug report.
6969
This describes what kind of information is useful and why it is useful.
7070

71-
`Bug Writing Guidelines <http://developer.mozilla.org/en/docs/Bug_writing_guidelines>`_
71+
`Bug Writing Guidelines <https://developer.mozilla.org/en-US/docs/Mozilla/QA/Bug_writing_guidelines>`_
7272
Information about writing a good bug report. Some of this is specific to the
7373
Mozilla project, but describes general good practices.
7474

@@ -82,6 +82,6 @@ patching Python in the `Python Developer's Guide`_. If you have questions,
8282
the `core-mentorship mailing list`_ is a friendly place to get answers to
8383
any and all questions pertaining to the process of fixing issues in Python.
8484

85-
.. _Documentation bugs: http://bugs.python.org/issue?@filter=status&@filter=components&components=4&status=1&@columns=id,activity,title,status&@sort=-activity
86-
.. _Python Developer's Guide: http://docs.python.org/devguide/
85+
.. _Documentation bugs: https://bugs.python.org/issue?@filter=status&@filter=components&components=4&status=1&@columns=id,activity,title,status&@sort=-activity
86+
.. _Python Developer's Guide: https://docs.python.org/devguide/
8787
.. _core-mentorship mailing list: https://mail.python.org/mailman/listinfo/core-mentorship/

0 commit comments

Comments
 (0)