Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 752d6c6

Browse files
committed
Merge remote-tracking branch 'matplotlib/v2.0.0-doc' into v2.0.x
2 parents 35996ce + 1cce7d3 commit 752d6c6

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

doc/_templates/layout.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ <h3>{{ _('Navigation') }}</h3>
8282
VERSION: '{{ release|e }}',
8383
COLLAPSE_INDEX: false,
8484
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
85-
HAS_SOURCE: {{ has_source|lower }}
85+
HAS_SOURCE: {{ has_source|lower }},
86+
SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}'
8687
};
8788
</script>
8889
{%- for scriptfile in script_files %}

examples/pylab_examples/set_and_get.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
l1, l2 = lines
7878
plt.setp(lines, linestyle='--') # set both to dashed
7979
plt.setp(l1, linewidth=2, color='r') # line1 is thick and red
80-
plt.setp(l2, linewidth=1, color='g') # line2 is thicker and green
80+
plt.setp(l2, linewidth=1, color='g') # line2 is thinner and green
8181

8282

8383
print('Line setters')

matplotlibrc.template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,10 @@ backend : $TEMPLATE_BACKEND
399399
#ytick.labelsize : medium # fontsize of the tick labels
400400
#ytick.direction : out # direction: in, out, or inout
401401
#ytick.minor.visible : False # visibility of minor ticks on y-axis
402-
#xtick.major.left : True # draw y axis left major ticks
403-
#xtick.major.right : True # draw y axis right major ticks
404-
#xtick.minor.left : True # draw y axis left minor ticks
405-
#xtick.minor.right : True # draw y axis right minor ticks
402+
#ytick.major.left : True # draw y axis left major ticks
403+
#ytick.major.right : True # draw y axis right major ticks
404+
#ytick.minor.left : True # draw y axis left minor ticks
405+
#ytick.minor.right : True # draw y axis right minor ticks
406406

407407

408408
### GRIDS

0 commit comments

Comments
 (0)