Ticket #4222: stdio.patch
File stdio.patch, 655 bytes (added by , 8 years ago) |
---|
-
twisted/internet/stdio.py
1 # -*- test-case-name: twisted.test.test_process.ProcessTestCase.testStdio -*- 2 3 # Copyright (c) 2001-2004 Twisted Matrix Laboratories. 1 # -*- test-case-name: twisted.test.test_stdio -*- 2 # Copyright (c) 2001-2010 Twisted Matrix Laboratories. 4 3 # See LICENSE for details. 5 4 6 5 """ … … 29 28 from twisted.internet._win32stdio import StandardIO 30 29 else: 31 30 from twisted.internet._posixstdio import StandardIO 31 32 __all__ = ['StandardIO']