Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 71f4a4e

Browse filesBrowse files
committed
mend
1 parent 6afa9bf commit 71f4a4e
Copy full SHA for 71f4a4e

File tree

1 file changed

+18
-14
lines changed
Filter options

1 file changed

+18
-14
lines changed

‎doc/devel/contribute.rst

Copy file name to clipboardExpand all lines: doc/devel/contribute.rst
+18-14Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -416,18 +416,22 @@ Variable names
416416
When feasible, please use our internal variable naming convention for objects
417417
of a given class and objects of any child class:
418418

419-
+---------------+------------------------------------+
420-
| variable name | base class |
421-
+===============+====================================+
422-
| ``fig`` | `~matplotlib.figure.FigureBase` |
423-
+---------------+------------------------------------+
424-
| ``ax`` | `~matplotlib.axes.Axes` |
425-
+---------------+------------------------------------+
426-
| ``trans`` | `~matplotlib.transforms.Transform` |
427-
+---------------+------------------------------------+
428-
429-
Generally, denote more than instance of the same class by adding numbers to
430-
the variable names, i.e. ``trans1``, ``trans2``.
419+
+------------------------------------+---------------+------------------------------------------+
420+
| base class | variable | multiples |
421+
+====================================+===============+==========================================+
422+
| `~matplotlib.figure.FigureBase` | ``fig`` | |
423+
+------------------------------------+---------------+------------------------------------------+
424+
| `~matplotlib.axes.Axes` | ``ax`` | |
425+
+------------------------------------+---------------+------------------------------------------+
426+
| `~matplotlib.transforms.Transform` | ``trans`` | ``trans_<source>_<target>`` or |
427+
+ + + +
428+
| | | ``trans_<source>`` when target is screen |
429+
+------------------------------------+---------------+------------------------------------------+
430+
431+
Generally, denote more than one instance of the same class by adding suffixes to
432+
the variable names. If a format isn't specified in the table, use numbers or
433+
letters as appropriate.
434+
431435

432436
.. _type-hints:
433437

@@ -495,13 +499,13 @@ ensure that a reference is included in the descriptive text.
495499

496500
API Change Notes
497501
""""""""""""""""
498-
.. include:: doc/api/next_api_changes/readme.rst
502+
.. include:: ../api/next_api_changes/README.rst
499503
:start-line: 5
500504
:end-line: 31
501505

502506
What's new
503507
""""""""""
504-
.. include:: doc/users/next_whats_new/readme.rst
508+
.. include:: ../users/next_whats_new/README.rst
505509
:start-line: 5
506510
:end-line: 24
507511

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.