Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3a409e9

Browse files
committed
This header was supposed to be committed in r69476
1 parent befb14f commit 3a409e9

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Modules/tkinter.h

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#ifndef TKINTER_H
2+
#define TKINTER_H
3+
4+
/* This header is used to share some macros between _tkinter.c and
5+
* tkappinit.c */
6+
7+
/* TK_RELEASE_LEVEL is always one of the following:
8+
* TCL_ALPHA_RELEASE 0
9+
* TCL_BETA_RELEASE 1
10+
* TCL_FINAL_RELEASE 2
11+
*/
12+
#define TK_VERSION_HEX ((TK_MAJOR_VERSION << 24) | \
13+
(TK_MINOR_VERSION << 16) | \
14+
(TK_RELEASE_SERIAL << 8) | \
15+
(TK_RELEASE_LEVEL << 0))
16+
17+
/* Protect Tk 8.4.13 and older from a deadlock that happens when trying
18+
* to load tk after a failed attempt. */
19+
#if TK_VERSION_HEX < 0x08040e02
20+
#define TKINTER_PROTECT_LOADTK
21+
#define TKINTER_LOADTK_ERRMSG \
22+
"Calling Tk_Init again after a previous call failed might deadlock"
23+
#endif
24+
25+
#endif /* !TKINTER_H */

0 commit comments

Comments
 (0)