mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Merged revisions 65328 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65328 | benjamin.peterson | 2008-07-31 10:15:45 -0500 (Thu, 31 Jul 2008) | 1 line remove usage of MacOS from Tkinter ........
This commit is contained in:
parent
4ae19463aa
commit
ca0c8ab97d
1 changed files with 0 additions and 10 deletions
|
@ -39,10 +39,6 @@ if sys.platform == "win32":
|
|||
import _tkinter # If this fails your Python may not be configured for Tk
|
||||
TclError = _tkinter.TclError
|
||||
from tkinter.constants import *
|
||||
try:
|
||||
import MacOS; _MacOS = MacOS; del MacOS
|
||||
except ImportError:
|
||||
_MacOS = None
|
||||
|
||||
wantobjects = 1
|
||||
|
||||
|
@ -1650,12 +1646,6 @@ class Tk(Misc, Wm):
|
|||
def _loadtk(self):
|
||||
self._tkloaded = 1
|
||||
global _default_root
|
||||
if _MacOS and hasattr(_MacOS, 'SchedParams'):
|
||||
# Disable event scanning except for Command-Period
|
||||
_MacOS.SchedParams(1, 0)
|
||||
# Work around nasty MacTk bug
|
||||
# XXX Is this one still needed?
|
||||
self.update()
|
||||
# Version sanity checks
|
||||
tk_version = self.tk.getvar('tk_version')
|
||||
if tk_version != _tkinter.TK_VERSION:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue