>> Not that I know of. It's working fine here (Mac OS X 10.5.?), but I'm >> using Python from MacPorts, so I don't know about the stock installed >> Python.
Follow up: To make it work with the system Python, the Python readline library should be used (this is a Mac OS X specific issue, as Mac OS X is shipped with libedit instead of GNU readline), see http://pypi.python.org/pypi/readline 1/ Install this package with easy_install (not with pip, or you'll have to deal with a sys.path inclusion order issue): sudo easy_install readline 2/ Check out your installation python import readline readline.__file__ should report the newly installed readline library (/Library/...) if it reports the system library (/System/Library/...) the defaut readline module will be used, and tab completion will not work. HTH, Manu -- You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to trac-dev@googlegroups.com. To unsubscribe from this group, send email to trac-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en.