diff options
Diffstat (limited to 'Modules/tkinter.h')
-rw-r--r-- | Modules/tkinter.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Modules/tkinter.h b/Modules/tkinter.h index 3c55676c0f..cb5a806b0c 100644 --- a/Modules/tkinter.h +++ b/Modules/tkinter.h @@ -16,14 +16,6 @@ (TK_RELEASE_LEVEL << 8) | \ (TK_RELEASE_SERIAL << 0)) -/* TK_VERSION_HEX packs fields in wrong order, not suitable for comparing of - * non-final releases. Left for backward compatibility. - */ -#define TK_VERSION_HEX ((TK_MAJOR_VERSION << 24) | \ - (TK_MINOR_VERSION << 16) | \ - (TK_RELEASE_SERIAL << 8) | \ - (TK_RELEASE_LEVEL << 0)) - /* Protect Tk 8.4.13 and older from a deadlock that happens when trying * to load tk after a failed attempt. */ #if TK_HEX_VERSION < 0x0804020e |