Re: [Tutor] my modules idle doesn't list functions python3.3

2014-02-05 Thread eryksun
On Wed, Feb 5, 2014 at 6:53 AM, Ian D wrote: > > But if I use Python 3.3 > It does not display the functions using autocomplete Maybe IDLE's AutoComplete extension is disabled. The configuration is in Lib\idlelib\config-extensions.def, with the following defaults: [AutoComplete] enable=1

Re: [Tutor] my modules idle doesn't list functions python3.3

2014-02-05 Thread Tim Golden
On 05/02/2014 11:53, Ian D wrote: > Hi > > In Python 2.7 > > If I create my own modules and call them with > > import sys > sys.path.append("d:\modules") > > import myMod > > and use tab to autocomplete I get a list functions. > myMod.< if I tab this I get a list of my functions >

[Tutor] my modules idle doesn't list functions python3.3

2014-02-05 Thread Ian D
Hi In Python 2.7 If I create my own modules and call them with import sys sys.path.append("d:\modules") import myMod and use tab to autocomplete I get a list functions. myMod.< if I tab this I get a list of my functions (This only works if I have ran program at least once, then