tarantool / tarantool-python

Python client library for Tarantool
https://www.tarantool.io
BSD 2-Clause "Simplified" License
100 stars 48 forks source link

No _data in response in some cases #139

Closed denis-ignatenko closed 5 years ago

denis-ignatenko commented 5 years ago

When calling Connection authenticate there is not data in response. In interactive console exception raised `--> 236 for tpl in self._data: 237 output.extend(("- ", repr(tpl), "\n")) 238 if len(output) > 0:

TypeError: 'NoneType' object is not iterable`

https://github.com/tarantool/tarantool-python/blob/debe67634bc83d8c1b1687c623629cc861e1c4fc/tarantool/response.py#L236

Possible fix: for i in r._data or ()