[pypy-commit] pypy zlib-copying: Docstrings...

Julian Berman pypy.commits at gmail.com
Tue Feb 5 08:56:03 EST 2019


Author: Julian Berman <Julian+Hg at 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:


More information about the pypy-commit mailing list