From: Arfrever F. T. A. <arf...@gm...> - 2011-07-06 22:33:18
|
2011-07-06 23:15:39 Arfrever Frehtes Taifersar Arahesis napisał(a): > The output with Python 3.1 is identical as with Python 3.2. Actually there is small difference: $ python3.1 -c 'import sys; sys.stdout.close()' Exception ValueError: 'I/O operation on closed file.' in <_io.TextIOWrapper name='<stdout>' encoding='UTF-8'> ignored $ python3.2 -c 'import sys; sys.stdout.close()' Exception ValueError: 'I/O operation on closed file.' in <_io.TextIOWrapper name='<stdout>' mode='w' encoding='UTF-8'> ignored -- Arfrever Frehtes Taifersar Arahesis |