File tree Expand file tree Collapse file tree 4 files changed +12
-16
lines changed
Expand file tree Collapse file tree 4 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1- """Module re-exporting contents of the bz2 module.
2-
3- Please refer to the bz2 documentation for this module's contents.
4- """
1+ import bz2
2+ __doc__ = bz2 .__doc__
3+ del bz2
54
65from bz2 import *
Original file line number Diff line number Diff line change 1- """Module re-exporting contents of the gzip module.
2-
3- Please refer to the gzip documentation for this module's contents.
4- """
1+ import gzip
2+ __doc__ = gzip .__doc__
3+ del gzip
54
65from gzip import *
Original file line number Diff line number Diff line change 1- """Module re-exporting contents of the lzma module.
2-
3- Please refer to the lzma documentation for this module's contents.
4- """
1+ import lzma
2+ __doc__ = lzma .__doc__
3+ del lzma
54
65from lzma import *
Original file line number Diff line number Diff line change 1- """Module re-exporting contents of the zlib module.
2-
3- Please refer to the bz2 documentation for this module's contents.
4- """
1+ import zlib
2+ __doc__ = zlib .__doc__
3+ del zlib
54
65from zlib import *
You can’t perform that action at this time.
0 commit comments