7852: add a failing test that does: readline and then readlines. The expectation...
authorradhika <radhika@curoverse.com>
Mon, 25 Jan 2016 21:37:24 +0000 (16:37 -0500)
committerBrett Smith <brett@curoverse.com>
Fri, 18 Mar 2016 15:30:42 +0000 (11:30 -0400)
commit2d2d6ad747ccb94d77fcb11c275317af7c08f7af
tree11fe510dc4b06050acf4807323a302e0d836342a
parent322b1729108da208e7376b05e2396b0c9da1c654
7852: add a failing test that does: readline and then readlines. The expectation would be the second call,
readlines, would fetch all the remaining lines after the first line. However, the readlines call is only
fetching the data after the "first block" which was read during the first readline call. It appears that
self._readline_cache and self._filepos are playing a role here, which are set during the first readline.
sdk/python/tests/test_stream.py