MCPcopy Index your code
hub / github.com/python/cpython / isAquaTk

Function isAquaTk

Lib/idlelib/macosx.py:51–57  ·  view source on GitHub ↗

Returns True if IDLE is using a native OS X Tk (Cocoa or Carbon).

()

Source from the content-addressed store, hash-verified

49 return
50
51def isAquaTk():
52 """
53 Returns True if IDLE is using a native OS X Tk (Cocoa or Carbon).
54 """
55 if not _tk_type:
56 _init_tk_type()
57 return _tk_type == "cocoa" or _tk_type == "carbon"
58
59def isCarbonTk():
60 """

Callers 1

setupAppFunction · 0.85

Calls 1

_init_tk_typeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…