MCPcopy Create free account
hub / github.com/RustPython/RustPython / debug

Method debug

Lib/tkinter/__init__.py:3819–3824  ·  view source on GitHub ↗

Turn on the internal consistency checks of the B-Tree inside the text widget according to BOOLEAN.

(self, boolean=None)

Source from the content-addressed store, hash-verified

3817 return res
3818
3819 def debug(self, boolean=None):
3820 """Turn on the internal consistency checks of the B-Tree inside the text
3821 widget according to BOOLEAN."""
3822 if boolean is None:
3823 return self.tk.getboolean(self.tk.call(self._w, 'debug'))
3824 self.tk.call(self._w, 'debug', boolean)
3825
3826 def delete(self, index1, index2=None):
3827 """Delete the characters between INDEX1 and INDEX2 (not included)."""

Callers 15

__init__Method · 0.45
_write_to_selfMethod · 0.45
_accept_connectionMethod · 0.45
pause_readingMethod · 0.45
resume_readingMethod · 0.45
_fatal_errorMethod · 0.45
_read_ready__on_eofMethod · 0.45
eof_receivedMethod · 0.45
_start_handshakeMethod · 0.45
_fatal_errorMethod · 0.45
closeMethod · 0.45

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by 15

test_enable_loggingMethod · 0.36
test_filenameMethod · 0.36
test_flatMethod · 0.36
test_nested_explicitMethod · 0.36
test_nested_inheritedMethod · 0.36
test_flushMethod · 0.36
test_flush_on_closeMethod · 0.36
test_outputMethod · 0.36