You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the source the TabCompletion option is only used in the Microsoft.Scripting.Hosting.Shell.ConsoleHost.CreateConsole to decide whether to run a basic or super console. Since IronPython is overriding the method in its own PythonConsoleHost, the option does nothing.
Off the top of my head, here are some ways we could handle this:
Remove the option from the help listing at the IronPython level.
Update the DLR to make the option obsolete (we could "promote" the BasicConsole option to the DLR).
The text was updated successfully, but these errors were encountered:
In
ipy -?
theTabCompletion
option is shown:Looking at the source the
TabCompletion
option is only used in theMicrosoft.Scripting.Hosting.Shell.ConsoleHost.CreateConsole
to decide whether to run a basic or super console. Since IronPython is overriding the method in its ownPythonConsoleHost
, the option does nothing.Off the top of my head, here are some ways we could handle this:
BasicConsole
option to the DLR).The text was updated successfully, but these errors were encountered: