Martin A. Brown wrote:

> I think item 2. about bash_completion bit is outside the scope of
> Python, specifically, though, and more of an operating environment
> thing.

I have recently (re)discovered that there is an easy way to get bash 
completion:
 
https://pypi.python.org/pypi/argcomplete

I'm in the process of adding

    try: import argcomplete
    except ImportError: pass
    else: argcomplete.autocomplete(parser)

to every script I touch. So far it works great.

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to