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 armandas
Recipients armandas
Date 2009-02-14.00:04:16
SpamBayes Score 0.013616312
Marked as misclassified No
Message-id <1234569860.16.0.0783224890959.issue5256@psf.upfronthosting.co.za>
In-reply-to
Content
When custom dictionary is used to create a completer, rlcompleter still
uses __builtins__.__dict__ to search for completions (rlcompleter.py,
global_matches()):

for nspace in [builtins.__dict__, self.namespace]:
...

This behaviour may sometimes be unwanted. It would be nice to have an
option, which when set would tell completer to only use provided dictionary.
History
Date User Action Args
2009-02-14 00:04:20armandassetrecipients: + armandas
2009-02-14 00:04:20armandassetmessageid: <1234569860.16.0.0783224890959.issue5256@psf.upfronthosting.co.za>
2009-02-14 00:04:18armandaslinkissue5256 messages
2009-02-14 00:04:18armandascreate