8000 [SPRINT] Refactored the axes module to split it in smaller chunks. by NelleV · Pull Request #1931 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

[SPRINT] Refactored the axes module to split it in smaller chunks. #1931

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

Merged
merged 8 commits into from
Jun 29, 2013
Prev Previous commit
Next Next commit
DOC the refactoring of the axes module is now mentionned in the API_c…
…hanges.rst file
  • Loading branch information
NelleV committed Jun 29, 2013
commit 7238e2c3e87409dc301e6953b737bb19ce9795d8
12 changes: 12 additions & 0 deletions doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ help figure out possible sources of the changes you are experiencing.
For new features that were added to matplotlib, please see
:ref:`whats-new`.

Changes in 1.4.x
================

* A major refactoring of the axes module was made. The axes module has been
splitted into smaller modules:

- the `_base` module, which contains a new private _AxesBase class. This
class contains all methods except plotting and labelling methods.
- the `axes` module, which contains the Axes class. This class inherits
from _AxesBase, and contains all plotting and labelling methods.
- the `_subplot` module, with all the classes concerning subplotting.


.. _changes_in_1_3:

Expand Down
0