Skip to content

Commit c7eeebe

Browse files
author
David Noble
committed
Updated change log in prep for 1.2.3 release
Signed-off-by: David Noble <dnoble@splunk.com>
1 parent d176ee5 commit c7eeebe

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@
1515

1616
2. Logs a traceback to SearchCommand.logger. This is old behavior.
1717

18+
* Made ResponseReader more streamlike, so that it can be wrapped in an
19+
io.BufferedReader to realize a significant performance gain.
20+
21+
*Example usage*
22+
23+
```
24+
import io
25+
...
26+
response = job.results(count=maxRecords, offset=self._offset)
27+
resultsList = results.ResultsReader(io.BufferedReader(response))
28+
```
29+
1830
### Bug fixes
1931

2032
1. Addressed a problem in the results reader running under Python 2.6.

0 commit comments

Comments
 (0)