Message130811
Would it be possible to add an open() function to the bz2 module? Currently gzip has such a function, but bz2 does not:
>>> import gzip
>>> gzip.open
<function open at 0x781f0>
>>> import bz2
>>> bz2.open
Traceback (most recent call last):
File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute 'open'
>>> |
|
Date |
User |
Action |
Args |
2011-03-14 13:22:16 | mdehoon | set | recipients:
+ mdehoon, rhettinger, niemeyer, pitrou, wrobell, nadeem.vawda, eric.araujo, MizardX, antlong, xuanji |
2011-03-14 13:22:16 | mdehoon | set | messageid: <1300108936.6.0.384711758895.issue5863@psf.upfronthosting.co.za> |
2011-03-14 13:22:15 | mdehoon | link | issue5863 messages |
2011-03-14 13:22:15 | mdehoon | create | |
|