• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2{% extends "!layout.html" %}
3{%- block content %}
4{%- if theme_fixed_sidebar|lower == 'true' %}
5  <div class="document">
6    {{ sidebar() }}
7    {%- block document %}
8      <div class="documentwrapper">
9      {%- if render_sidebar %}
10        <div class="bodywrapper">
11      {%- endif %}
12
13          {%- block relbar_top %}
14            {%- if theme_show_relbar_top|tobool %}
15              <div class="related top">
16                &nbsp;
17                {{- rellink_markup () }}
18              </div>
19            {%- endif %}
20          {% endblock %}
21
22          <div class="body" role="main">
23          	<div class="admonition" id="python2-eol">
24          	 As of January 1, 2020 this library no longer supports Python 2 on the latest released version.
25          	 Library versions released prior to that date will continue to be available. For more information please
26          	 visit <a href="https://cloud.google.com/python/docs/python2-sunset/">Python 2 support on Google Cloud</a>.
27          	</div>
28            {% block body %} {% endblock %}
29          </div>
30
31          {%- block relbar_bottom %}
32            {%- if theme_show_relbar_bottom|tobool %}
33              <div class="related bottom">
34                &nbsp;
35                {{- rellink_markup () }}
36              </div>
37            {%- endif %}
38          {% endblock %}
39
40      {%- if render_sidebar %}
41        </div>
42      {%- endif %}
43      </div>
44    {%- endblock %}
45    <div class="clearer"></div>
46  </div>
47{%- else %}
48{{ super() }}
49{%- endif %}
50{%- endblock %}
51