/* * tkPort.h -- * * This header file handles porting issues that occur because of * differences between systems. It reads in platform specific * portability files. * * Copyright (c) 1995 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * RCS: @(#) $Id: tkPort.h,v 1.6 2004/04/24 06:00:18 das Exp $ */ #ifndef _TKPORT #define _TKPORT #ifndef _TK #include "tk.h" #endif #ifndef _TCL #include "tcl.h" #endif #if defined(__WIN32__) || defined(_WIN32) # include "tkWinPort.h" #else # if defined(MAC_OSX_TK) # include "tkMacOSXPort.h" # else # include "tkUnixPort.h" # endif #endif #endif /* _TKPORT */ '> https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
BranchCommit messageAuthorAge
2.7[2.7] bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split(...Serhiy Storchaka7 years
3.3post 3.3.7, should there be anyNed Deily7 years
3.4Remove retired and security branches from active docs (#3883)Ned Deily7 years
3.5Remove retired and security branches from active docs (#3882)Ned Deily7 years
3.6[3.6] bpo-31178: Mock os.waitpid() in test_subprocess (GH-3896) (#3897)Miss Islington (bot)7 years
benjamin-clangcloses bpo-31696: don't mention GCC in sys.version when building with clangBenjamin Peterson7 years
benjamin-iteration-torturebpo-31530: stop crashes when iterating over a file on multiple threadsBenjamin Peterson7 years
buildbot-custombpo-5885: add Misc/NEWS entryIgor Galić7 years
masterbpo-38614: Use support timeout constants (GH-17572)Victor Stinner5 years