File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
@dataclass
10
10
class Options :
11
- """Class for storing options that the user sets"""
11
+ """Class for storing options that the user sets
12
+
13
+ .. versionchanged:: 1.0.0
14
+
15
+ Added ``use_wcwidth`` option
16
+ """
12
17
13
18
first_col_heading : bool
14
19
last_col_heading : bool
Original file line number Diff line number Diff line change @@ -400,6 +400,9 @@ def table2ascii(
400
400
) -> str :
401
401
"""Convert a 2D Python table to ASCII text
402
402
403
+ .. versionchanged:: 1.0.0
404
+ Added the ``use_wcwidth`` parameter defaulting to :py:obj:`True`.
405
+
403
406
Args:
404
407
header: List of column values in the table's header row. All values should be :class:`str`
405
408
or support :class:`str` conversion. If not specified, the table will not have a header row.
You can’t perform that action at this time.
0 commit comments