Author: Julian Berman <julian...@grayvines.com> Branch: zlib-copying Changeset: r95838:17161dab8936 Date: 2019-02-05 14:14 +0100 http://bitbucket.org/pypy/pypy/changeset/17161dab8936/
Log: Docstrings... diff --git a/pypy/module/zlib/interp_zlib.py b/pypy/module/zlib/interp_zlib.py --- a/pypy/module/zlib/interp_zlib.py +++ b/pypy/module/zlib/interp_zlib.py @@ -182,6 +182,9 @@ return space.newbytes(result) def copy(self, space): + """ + copy() -- Return a copy of the compression object. + """ try: self.lock() try: @@ -331,6 +334,9 @@ return space.newbytes(string) def copy(self, space): + """ + copy() -- Return a copy of the decompression object. + """ try: self.lock() try: _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit