This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients markroseman, python-dev, terry.reedy
Date 2016-07-16.00:10:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468627830.97.0.0338461020376.issue25507@psf.upfronthosting.co.za>
In-reply-to
Content
run_autocomplete.diff is a preliminary patch for moving the completion list function into run.py and reversing the imports.  However, the assert in test_autocomplete, line 103 newly fails because the call to open_completions in autocomplete_event (line 85) returns None.  The None comes from l. 155.
        comp_lists = self.fetch_completions(comp_what, mode)
        if not comp_lists[0]:
            return None
I do not yet know why moving the one function causes the completion lists for re to be blank. I am going to shelve this approach and return to deletion.
History
Date User Action Args
2016-07-16 00:10:31terry.reedysetrecipients: + terry.reedy, markroseman, python-dev
2016-07-16 00:10:30terry.reedysetmessageid: <1468627830.97.0.0338461020376.issue25507@psf.upfronthosting.co.za>
2016-07-16 00:10:30terry.reedylinkissue25507 messages
2016-07-16 00:10:30terry.reedycreate