From: Jeremy Hylton Date: Mon, 21 Dec 1998 16:40:21 +0000 (+0000) Subject: remove debugging fprintf (should have checked this before previous X-Git-Tag: v1.5.2b1~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36252022ec5c007e0ba0aa7f753997b759a8ea96;p=python remove debugging fprintf (should have checked this before previous checkin) --- diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 43e59c5568..1845bbcde1 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -212,8 +212,6 @@ PyZlib_decompress(self, args) do { err=inflate(&zst, Z_FINISH); - fprintf(stderr, "err=%d avail_in=%d avail_out=%d\n", - err, zst.avail_in, zst.avail_out); switch(err) { case(Z_STREAM_END):