Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
testing word wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
MariaMonks committed Mar 20, 2015
1 parent 52db42b commit 21922fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/combinat/tableau.py
Expand Up @@ -152,17 +152,17 @@
sage: ascii_art(t)
1 2 3
4 5
sage: Tableaux.global_options(ascii_art="normal")
sage: Tableaux.global_options(ascii_art="boxes")
sage: ascii_art(t)
+---+---+
| 4 | 5 |
+---+---+---+
| 1 | 2 | 3 |
+---+---+---+
| 4 | 5 |
+---+---+
sage: Tableaux.global_options(ascii_art="compact")
sage: ascii_art(t)
|4|5|
|1|2|3|
|4|5|
sage: Tableaux.global_options.reset()
""",
display=dict(default="list",
Expand Down

0 comments on commit 21922fd

Please sign in to comment.