You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
For example an Connection::authenticate() response does no contain a
data. This leads to an exception when working with the connection from
interactive python console.
Fixes#139.
For example an Connection::authenticate() response does no contain a
data. This leads to an exception when working with the connection from
interactive python console.
Fixes#139.
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`
tarantool-python/tarantool/response.py
Line 236 in debe676
Possible fix:
for i in r._data or ()
The text was updated successfully, but these errors were encountered: