Skip to content

Commit

Permalink
docs: Remove csv_py2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jun 13, 2023
1 parent b691dbf commit 0061618
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 35 deletions.
16 changes: 8 additions & 8 deletions agate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
+=========================+==========================================+=========================================+
| default_locale | Default locale for number formatting | default_locale('LC_NUMERIC') or 'en_US' |
+-------------------------+------------------------------------------+-----------------------------------------+
| horizontal_line_char | Character to render for horizontal lines | '-' |
| horizontal_line_char | Character to render for horizontal lines | '-' |
+-------------------------+------------------------------------------+-----------------------------------------+
| vertical_line_char | Character to render for vertical lines | '|' |
| vertical_line_char | Character to render for vertical lines | '|' |
+-------------------------+------------------------------------------+-----------------------------------------+
| bar_char | Character to render for bar chart units | '░' |
| bar_char | Character to render for bar chart units | '░' |
+-------------------------+------------------------------------------+-----------------------------------------+
| printable_bar_char | Printable character for bar chart units | ':' |
| printable_bar_char | Printable character for bar chart units | ':' |
+-------------------------+------------------------------------------+-----------------------------------------+
| zero_line_char | Character to render for zero line units | '▓' |
| zero_line_char | Character to render for zero line units | '▓' |
+-------------------------+------------------------------------------+-----------------------------------------+
| printable_zero_line_char| Printable character for zero line units | '|' |
| printable_zero_line_char| Printable character for zero line units | '|' |
+-------------------------+------------------------------------------+-----------------------------------------+
| tick_char | Character to render for axis ticks | '+' |
| tick_char | Character to render for axis ticks | '+' |
+-------------------------+------------------------------------------+-----------------------------------------+
| ellipsis_chars | Characters to render for ellipsis | '...' |
| ellipsis_chars | Characters to render for ellipsis | '...' |
+-------------------------+------------------------------------------+-----------------------------------------+
"""
Expand Down
23 changes: 0 additions & 23 deletions docs/api/csv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@ Python 3
agate.csv_py3.DictReader
agate.csv_py3.DictWriter

Python 2
--------

.. autosummary::
:nosignatures:

agate.csv_py2.reader
agate.csv_py2.writer
agate.csv_py2.Reader
agate.csv_py2.Writer
agate.csv_py2.DictReader
agate.csv_py2.DictWriter

Python 3 details
----------------

Expand All @@ -47,13 +34,3 @@ Python 3 details
.. autoclass:: agate.csv_py3.Writer
.. autoclass:: agate.csv_py3.DictReader
.. autoclass:: agate.csv_py3.DictWriter

Python 2 details
----------------

.. autofunction:: agate.csv_py2.reader
.. autofunction:: agate.csv_py2.writer
.. autoclass:: agate.csv_py2.Reader
.. autoclass:: agate.csv_py2.Writer
.. autoclass:: agate.csv_py2.DictReader
.. autoclass:: agate.csv_py2.DictWriter
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,3 @@ line_length = 119

[bdist_wheel]
universal = 1

[coverage:run]
omit =
agate/csv_py2.py

0 comments on commit 0061618

Please sign in to comment.