since we are getting some console autocomplete improvements, might be worth asking again...
Certain objects, namely requests responses take a LONG time to autocomplete, and autocomplete seems to have to start from scratch each character
>>> import requests
>>> r=requests.get('https://google.com')
subsequently, typing r. takes like three seconds before another character can be typed. This is also bad in obj
Ideally, the autocomplete would be in a cancellable theead such that typing on the keyboard is responsive.
This may be related to another bug in recent versions of the beta: starting with
>>> r.iter_content()
with cursor at the end of the line, and backspacing two characters to delete the () results in a pause, then deletion of three characters. Basically, deleting a left parenthesis often results in two characters being removed. This happens often on complex objects like requests and objcinstance objects, but perhaps not on simpler ones.
>>> r.iter_conten
