diff options
-rw-r--r-- | Doc/library/tkinter.ttk.rst | 6 | ||||
-rw-r--r-- | Objects/exceptions.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Doc/library/tkinter.ttk.rst b/Doc/library/tkinter.ttk.rst index c11b08b..3390d13 100644 --- a/Doc/library/tkinter.ttk.rst +++ b/Doc/library/tkinter.ttk.rst @@ -157,6 +157,9 @@ Label Options The following options are supported by labels, buttons and other button-like widgets. +.. tabularcolumns:: |p{0.2\textwidth}|p{0.7\textwidth}| +.. + +--------------+-----------------------------------------------------------+ | option | description | +==============+===========================================================+ @@ -697,6 +700,9 @@ Options This widget accepts the following specific options: +.. tabularcolumns:: |p{0.2\textwidth}|p{0.7\textwidth}| +.. + +----------------+--------------------------------------------------------+ | option | description | +================+========================================================+ diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 9258ace..adaece1 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -9,7 +9,6 @@ #include "structmember.h" #include "osdefs.h" -#define MAKE_IT_NONE(x) (x) = Py_None; Py_INCREF(Py_None); /* NOTE: If the exception class hierarchy changes, don't forget to update * Lib/test/exception_hierarchy.txt |