Home
last modified time | relevance | path

Searched refs:flushmode (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dzlibmodule.c690 int flushmode = Z_FINISH; in PyZlib_flush() local
692 if (!PyArg_ParseTuple(args, "|i:flush", &flushmode)) in PyZlib_flush()
697 if (flushmode == Z_NO_FLUSH) { in PyZlib_flush()
713 err = deflate(&self->zst, flushmode); in PyZlib_flush()
727 if (err == Z_STREAM_END && flushmode == Z_FINISH) { in PyZlib_flush()
/external/python/cpython2/Misc/
DHISTORY10192 the end of loop was incorrect, and failed when the flushmode != Z_FINISH.