mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Have testLoadTkFailure() skip on cygwin since Tcl/Tk on cygwin renders to the
Windows GDI directly and thus does not need a DISPLAY environment variable. Thanks Jason Tishler.
This commit is contained in:
parent
4c79a83e0c
commit
3684c8771e
1 changed files with 3 additions and 1 deletions
|
@ -129,7 +129,9 @@ class TclTest(unittest.TestCase):
|
|||
import os
|
||||
old_display = None
|
||||
import sys
|
||||
if sys.platform.startswith('win') or sys.platform.startswith('darwin'):
|
||||
if (sys.platform.startswith('win') or
|
||||
sys.platform.startswith('darwin') or
|
||||
sys.platform.startswith('cygwin')):
|
||||
return # no failure possible on windows?
|
||||
if 'DISPLAY' in os.environ:
|
||||
old_display = os.environ['DISPLAY']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue