git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@11187 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
180 B
Python
10 lines
180 B
Python
import sys
|
|
import file_test
|
|
|
|
if sys.version_info < (3,0):
|
|
file_test.nfile(sys.stdout)
|
|
|
|
cstdout = file_test.GetStdOut()
|
|
|
|
file_test.nfile(cstdout)
|
|
file_test.nfile_name("test.dat")
|