[Python-checkins] CVS: python/dist/src/Modules zlibmodule.c

Guido van Rossum guido@cnri.reston.va.us
Wed, 7 Apr 1999 16:23:19 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
	zlibmodule.c 
Log Message:
Patch by Andrew Kuchling to unflush() (flush() for deflating).
Without this, if inflate() returned Z_BUF_ERROR asking for more output
space, we would report the error; now, we increase the buffer size and
try again, just as for Z_OK.