Message218584
| Author |
vstinner |
| Recipients |
Claudiu.Popa, berker.peksag, rhettinger, tshepang, vstinner |
| Date |
2014年05月14日.22:34:36 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1400106877.11.0.917645440687.issue21027@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
$ ./python -m difflib -u a.py b.py
...
sys:1: ResourceWarning: unclosed file <_io.TextIOWrapper name='a.py' mode='r' encoding='UTF-8'>
sys:1: ResourceWarning: unclosed file <_io.TextIOWrapper name='b.py' mode='r' encoding='UTF-8'>
It looks like files are not closed.
I would prefer to have the unified output (-u) by default. I don't think that Python should mimick exactly UNIX tools.
tarfile has now a command line interface, but options are different. For example, it's -e to extract instead of -x. |
|