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

Function askretrycancel

Lib/tkinter/messagebox.py:128–131  ·  view source on GitHub ↗

Ask if operation should be retried; return true if the answer is yes

(title=None, message=None, **options)

Source from the content-addressed store, hash-verified

126
127
128def askretrycancel(title=None, message=None, **options):
129 "Ask if operation should be retried; return true if the answer is yes"
130 s = _show(title, message, WARNING, RETRYCANCEL, **options)
131 return s == RETRY
132
133
134# --------------------------------------------------------------------

Callers 1

messagebox.pyFile · 0.85

Calls 1

_showFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…