Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 17b38e20 authored by Raphaël Bleuse's avatar Raphaël Bleuse
Browse files

Fix formatting issues in API documentation

parent 348a41e8
Branches
Tags
No related merge requests found
......@@ -87,43 +87,43 @@ https://docs.python.org/3/library/stdtypes.html#set-types-set-frozenset
Immutable sets operations
^^^^^^^^^^^^^^^^^^^^^^^^^
+--------+------------------------------------------+-------------------------------------+
| status | operation | comment |
+========+==========================================+=====================================+
| ✗ | :py:`isdisjoint(other)` | |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`issubset(other)` | implemented by :py:`__le__` |
+--------+------------------------------------------+ |
| ✗ | :py:`<= other` | |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`< other` | implemented by :py:`__lt__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`issuperset(other)` | implemented by :py:`__ge__` |
+--------+------------------------------------------+ |
| ✗ | :py:`>= other` | |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`> other` | implemented by :py:`__gt__` |
+--------+------------------------------------------+-------------------------------------+
| ✓ | :py:`== other` | implemented by :py:`__eq__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`union(*others)` | see :py:`| other | …` |
+--------+------------------------------------------+-------------------------------------+
| ✓ | :py:`| other | …` | implemented by :py:`__or__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`intersection(*others)` | see :py:`& other & …` |
+--------+------------------------------------------+-------------------------------------+
| ✓ | :py:`& other & …`: | implemented by :py:`__and__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`difference(*others)` | see :py:`- other - …` |
+--------+------------------------------------------+-------------------------------------+
| ✓ | :py:`- other - …` | implemented by :py:`__sub__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`symmetric_difference(other)` | see :py:`^ other` |
+--------+------------------------------------------+-------------------------------------+
| ✓ | :py:`^ other` | implemented by :py:`__xor__` |
+--------+------------------------------------------+-------------------------------------+
| ✗ | :py:`copy()` | |
+--------+------------------------------------------+-------------------------------------+
+--------+-----------------------------------+-------------------------------------+
| status | operation | comment |
+========+===================================+=====================================+
| ✗ | :py:`isdisjoint(other)` | |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`issubset(other)` | implemented by :py:`__le__` |
+--------+-----------------------------------+ |
| ✗ | :py:`<= other` | |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`< other` | implemented by :py:`__lt__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`issuperset(other)` | implemented by :py:`__ge__` |
+--------+-----------------------------------+ |
| ✗ | :py:`>= other` | |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`> other` | implemented by :py:`__gt__` |
+--------+-----------------------------------+-------------------------------------+
| ✓ | :py:`== other` | implemented by :py:`__eq__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`union(*others)` | see :py:`| other | …` |
+--------+-----------------------------------+-------------------------------------+
| ✓ | :py:`| other | …` | implemented by :py:`__or__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`intersection(*others)` | see :py:`& other & …` |
+--------+-----------------------------------+-------------------------------------+
| ✓ | :py:`& other & …` | implemented by :py:`__and__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`difference(*others)` | see :py:`- other - …` |
+--------+-----------------------------------+-------------------------------------+
| ✓ | :py:`- other - …` | implemented by :py:`__sub__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`symmetric_difference(other)` | see :py:`^ other` |
+--------+-----------------------------------+-------------------------------------+
| ✓ | :py:`^ other` | implemented by :py:`__xor__` |
+--------+-----------------------------------+-------------------------------------+
| ✗ | :py:`copy()` | |
+--------+-----------------------------------+-------------------------------------+
Mutable sets operations
^^^^^^^^^^^^^^^^^^^^^^^
......@@ -222,24 +222,24 @@ Deprecated API usage in evalys
The comparison is made against commit d6d7234e51727adc0922b1df8826e5c6bd4b10ac.
+------------------------+-----------+----------+
| old API function | frequency | wrapped? |
+========================+===========+==========+
| difference | 4 | ✓ |
+------------------------+-----------+----------+
| interval_set_to_set | 3 | ✓ |
+------------------------+-----------+----------+
| string_to_interval_set | 3 | ✓ |
+------------------------+-----------+----------+
| intersection | 2 | ✓ |
+------------------------+-----------+----------+
| total | 2 | ✓ |
+------------------------+-----------+----------+
| equals | 1 | ✓ |
+------------------------+-----------+----------+
| interval_set_to_string | 1 | ✓ |
+------------------------+-----------+----------+
| set_to_interval_set | 1 | ✓ |
+------------------------+-----------+----------+
| union | 1 | ✓ |
+------------------------+-----------+----------+
+------------------------------+-----------+----------+
| old API function | frequency | wrapped? |
+==============================+===========+==========+
| :py:`difference` | 4 | ✓ |
+------------------------------+-----------+----------+
| :py:`interval_set_to_set` | 3 | ✓ |
+------------------------------+-----------+----------+
| :py:`string_to_interval_set` | 3 | ✓ |
+------------------------------+-----------+----------+
| :py:`intersection` | 2 | ✓ |
+------------------------------+-----------+----------+
| :py:`total` | 2 | ✓ |
+------------------------------+-----------+----------+
| :py:`equals` | 1 | ✓ |
+------------------------------+-----------+----------+
| :py:`interval_set_to_string` | 1 | ✓ |
+------------------------------+-----------+----------+
| :py:`set_to_interval_set` | 1 | ✓ |
+------------------------------+-----------+----------+
| :py:`union` | 1 | ✓ |
+------------------------------+-----------+----------+
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment