mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #27156: Remove more unused idlelib code.
This commit is contained in:
parent
223b874c00
commit
2e747c4b8f
2 changed files with 0 additions and 13 deletions
|
@ -5,16 +5,6 @@ import sys
|
|||
import tkinter
|
||||
import warnings
|
||||
|
||||
def runningAsOSXApp():
|
||||
warnings.warn("runningAsOSXApp() is deprecated, use isAquaTk()",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
return isAquaTk()
|
||||
|
||||
def isCarbonAquaTk(root):
|
||||
warnings.warn("isCarbonAquaTk(root) is deprecated, use isCarbonTk()",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
return isCarbonTk()
|
||||
|
||||
_tk_type = None
|
||||
|
||||
def _initializeTkVariantTests(root):
|
||||
|
|
|
@ -120,9 +120,6 @@ class VariablesTreeItem(ObjectTreeItem):
|
|||
sublist.append(item)
|
||||
return sublist
|
||||
|
||||
def keys(self): # unused, left for possible 3rd party use
|
||||
return list(self.object.keys())
|
||||
|
||||
def _stack_viewer(parent):
|
||||
root = tk.Tk()
|
||||
root.title("Test StackViewer")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue