New submission from Joshua Chia:
When using bz2.BZ2File to read an input file that is growing slowly, repeated
read()ing eventually catches up to the end and subsequently fails to produce
any more data while the input file continues growing.
In 2.7, the symptom is that read() keeps returning
Joshua Chia added the comment:
Seems to be duplicate of http://bugs.python.org/issue12776
--
___
Python tracker
<http://bugs.python.org/issue13271>
___
___
Pytho
Joshua Chia added the comment:
Added test case
--
resolution: -> duplicate
status: open -> closed
Added file: http://bugs.python.org/file29639/test.py
___
Python tracker
<http://bugs.python.org/i
New submission from Joshua Chia :
What steps will reproduce the problem?
1. Make a script containing this code:
parser = argparse.ArgumentParser()
parser.add_argument('-i', '--input-base-directory',
type=argparse.FileType('r'),