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

Method insert_separator

Lib/tkinter/__init__.py:3628–3630  ·  view source on GitHub ↗

Add separator at INDEX.

(self, index, cnf={}, **kw)

Source from the content-addressed store, hash-verified

3626 self.insert(index, 'radiobutton', cnf or kw)
3627
3628 def insert_separator(self, index, cnf={}, **kw):
3629 """Add separator at INDEX."""
3630 self.insert(index, 'separator', cnf or kw)
3631
3632 def delete(self, index1, index2=None):
3633 """Delete menu items between INDEX1 and INDEX2 (included)."""

Callers

nothing calls this directly

Calls 1

insertMethod · 0.95

Tested by

no test coverage detected