Skip to content

Commit b7cbfe4

Browse files
authored
bpo-31766: restore 3.5 to docs version switchers (python#3969)
1 parent 03b9537 commit b7cbfe4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Doc/tools/static/switchers.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
var all_versions = {
1313
'3.7': 'dev (3.7)',
1414
'3.6': '3.6',
15+
'3.5': '3.5',
1516
'2.7': '2.7',
1617
};
1718

Doc/tools/templates/indexsidebar.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ <h3>{% trans %}Download{% endtrans %}</h3>
22
<p><a href="{{ pathto('download') }}">{% trans %}Download these documents{% endtrans %}</a></p>
33
<h3>{% trans %}Docs for other versions{% endtrans %}</h3>
44
<ul>
5-
<li><a href="https://docs.python.org/2.7/">{% trans %}Python 2.7 (stable){% endtrans %}</a></li>
65
<li><a href="https://docs.python.org/3.6/">{% trans %}Python 3.6 (stable){% endtrans %}</a></li>
6+
<li><a href="https://docs.python.org/3.5/">{% trans %}Python 3.5 (stable){% endtrans %}</a></li>
7+
<li><a href="https://docs.python.org/2.7/">{% trans %}Python 2.7 (stable){% endtrans %}</a></li>
78
<li><a href="https://www.python.org/doc/versions/">{% trans %}Old versions{% endtrans %}</a></li>
89
</ul>
910

0 commit comments

Comments
 (0)