Skip to content

Convert docstring of Axes.pie() into numpydoc #8357

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ea9250d
numpydocstring added
kahnchana Mar 21, 2017
d4d912b
.
kahnchana Mar 21, 2017
ce79bfe
Merge remote-tracking branch 'refs/remotes/matplotlib/master' into do…
kahnchana Mar 22, 2017
492b0ac
Revert "numpydocstring added"
kahnchana Mar 22, 2017
50aa3ff
Docstring to Numpydoc
kahnchana Mar 22, 2017
17570af
Merge remote-tracking branch 'refs/remotes/matplotlib/master'
kahnchana Mar 22, 2017
9b6c50b
Merge remote-tracking branch 'refs/remotes/origin/master' into docstring
kahnchana Mar 22, 2017
8df19bd
FIX small nitpicks
kahnchana Mar 22, 2017
f570978
removed duplicate matplotlib.transforms import
sindunuragarp Mar 16, 2017
027cbae
Standardized matplotlib transforms import
sindunuragarp Mar 19, 2017
34f688b
Reconfigured line to comply with pep8 length
sindunuragarp Mar 20, 2017
03bacb8
Removed additional pep8 e501 error caused by mtransforms
sindunuragarp Mar 21, 2017
465a453
STY: pep8 cleanup
tacaswell Mar 10, 2017
6e451f1
MNT: explicitly pass in file handle to print_figure_impl
tacaswell Mar 10, 2017
710b509
FIX: always remove the temporary file in eps print_figure
tacaswell Mar 10, 2017
9f53b14
STY: pep8 clean up
tacaswell Mar 10, 2017
b9ff429
FIX: always remove the temporary file in eps print_figure_tex
tacaswell Mar 10, 2017
c3d012a
Revert "numpydocstring added"
kahnchana Mar 22, 2017
d12a3cd
Docstring to Numpydoc
kahnchana Mar 22, 2017
0b4909a
FIX small nitpicks
kahnchana Mar 22, 2017
8e54067
Merge branch 'docstring' of https://github.com/kahnchana/matplotlib i…
kahnchana Mar 22, 2017
a0c7bd8
Made style changes and edits suggested
kahnchana Mar 22, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FIX small nitpicks
# Conflicts:
#	lib/matplotlib/tests/test_backend_pgf.py
  • Loading branch information
kahnchana committed Mar 22, 2017
commit 0b4909a737722fb27e4080f96efb99ecf81f96a9
24 changes: 24 additions & 0 deletions lib/matplotlib/tests/test_backend_pgf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,13 @@ def create_figure():


# test compiling a figure to pdf with xelatex
<<<<<<< HEAD
@needs_xelatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_xelatex():
rc_xelatex = {'font.family': 'serif',
'pgf.rcfonts': False}
Expand All @@ -93,9 +97,13 @@ def test_xelatex():


# test compiling a figure to pdf with pdflatex
<<<<<<< HEAD
@needs_pdflatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_pdflatex():
import os
if os.environ.get('APPVEYOR', False):
Expand All @@ -113,10 +121,14 @@ def test_pdflatex():


# test updating the rc parameters for each figure
<<<<<<< HEAD
@needs_xelatex
@needs_pdflatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_rcupdate():
rc_sets = []
rc_sets.append({'font.family': 'sans-serif',
Expand Down Expand Up @@ -145,9 +157,13 @@ def test_rcupdate():


# test backend-side clipping, since large numbers are not supported by TeX
<<<<<<< HEAD
@needs_xelatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_pathclip():
rc_xelatex = {'font.family': 'serif',
'pgf.rcfonts': False}
Expand All @@ -162,9 +178,13 @@ def test_pathclip():


# test mixed mode rendering
<<<<<<< HEAD
@needs_xelatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_mixedmode():
rc_xelatex = {'font.family': 'serif',
'pgf.rcfonts': False}
Expand All @@ -177,9 +197,13 @@ def test_mixedmode():


# test bbox_inches clipping
<<<<<<< HEAD
@needs_xelatex
@pytest.mark.style('default')
@pytest.mark.backend('pgf')
=======
@switch_backend('pgf')
>>>>>>> 40d5e418e... FIX small nitpicks
def test_bbox_inches():
rc_xelatex = {'font.family': 'serif',
'pgf.rcfonts': False}
Expand Down