[Python-checkins] r68244 - in python/branches/release30-maint: Lib/tkinter/__init__.py

guilherme.polo python-checkins at python.org
Sat Jan 3 23:17:59 CET 2009


Author: guilherme.polo
Date: Sat Jan  3 23:17:59 2009
New Revision: 68244

Log:
Merged revisions 68242 via svnmerge from 
svn+ssh://pythondev/python/branches/py3k

........
  r68242 | guilherme.polo | 2009-01-03 20:13:31 -0200 (Sat, 03 Jan 2009) | 2 lines
  
  Forgot to remove no longer needed code since r68237
........


Modified:
   python/branches/release30-maint/   (props changed)
   python/branches/release30-maint/Lib/tkinter/__init__.py

Modified: python/branches/release30-maint/Lib/tkinter/__init__.py
==============================================================================
--- python/branches/release30-maint/Lib/tkinter/__init__.py	(original)
+++ python/branches/release30-maint/Lib/tkinter/__init__.py	Sat Jan  3 23:17:59 2009
@@ -49,12 +49,6 @@
 WRITABLE = _tkinter.WRITABLE
 EXCEPTION = _tkinter.EXCEPTION
 
-# These are not always defined, e.g. not on Win32 with Tk 8.0 :-(
-try: _tkinter.createfilehandler
-except AttributeError: _tkinter.createfilehandler = None
-try: _tkinter.deletefilehandler
-except AttributeError: _tkinter.deletefilehandler = None
-
 
 def _flatten(seq):
     """Internal function."""


More information about the Python-checkins mailing list