Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow starting TerminalInteractiveShell more than once #9843

Merged
merged 5 commits into from Aug 10, 2016

Conversation

minrk
Copy link
Member

@minrk minrk commented Aug 5, 2016

  1. always start with keep_running=True in interact(), which avoids interact() being a no-op on all runs after the first.
  2. don't close eventloop at end of mainloop (not sure this is the right thing to do)
  3. pass self, not self.Completer to PTCompleter, to ensure that it's always hooked up to shell.Completer, which can be replaced over time (pudb).

cc @Carreau, @takluyver for the right thing to do about _eventloop.close(), since I doubt this is the right thing. Maybe register close with atexit.register?

cc @inducer this fixes inducer/pudb#193

1. always start with keep_running=True in `interact()`
2. don't close eventloop at end of mainloop (not sure this is the right thing to do)
it is possible for the completer to get reloaded/replaced,
at which point the prompt-toolkit completions will not be those of ip.Completer,
but whatever ip.Completer was originally.
@@ -12,8 +12,12 @@

class IPythonPTCompleter(Completer):
"""Adaptor to provide IPython completions to prompt_toolkit"""
def __init__(self, ipy_completer):
self.ipy_completer = ipy_completer
def __init__(self, shell):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gruml gluml change of API.. gruml, gruml but I see the reason.
Can we check the type of shell and print a deprecation warning if it's a Completer ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not every internal utility class is a public API, so I have no qualms changing this one. I can make it backward-compatible, though.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added now in a fully backward-compatible way, and explicitly declared the module as private APIs.

@Carreau
Copy link
Member

Carreau commented Aug 5, 2016

cc @Carreau, @takluyver for the right thing to do about _eventloop.close(), since I doubt this is the right thing. Maybe register close with atexit.register?

Probably, or should we have an event loop "reference counting" and a with eventloop context manager that hold the eventloop ?

"""prompt-toolkit utilities

Everything in this module is a private API,
not to be used outside IPython.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add it to the packages skipped for the API docs, in the list here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In fact, here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@minrk minrk added this to the 5.1 milestone Aug 8, 2016
@minrk
Copy link
Member Author

minrk commented Aug 8, 2016

should we have an event loop "reference counting" and a with eventloop context manager that hold the eventloop ?

I don't think that quite works because it seems like the refcount would never be anything other than one after the class is instantiated, since the loop is setup in __init__, and shouldn't be closed until the object is garbage collected (atexit or __del__). It's not recursive, so the count doesn't go up, it's starting and stopping the same IPython instance once in a while.

@takluyver
Copy link
Member

I've just had a look at the prompt_toolkit code, and it doesn't look like there should be any ill effects of not calling eventloop.close(). Some fds will remain open, but you probably only have one InteractiveShell object, so a few fds lingering shouldn't be a problem.

If we do call it anywhere, I think __del__ would be the best place. That assumes that no-one is taking a reference to the event loop and using it outside of the shell object, but I think that's probably safe. Or maybe prompt_toolkit should have a __del__ method on the event loop classes to clear up their fds. (@jonathanslenders)

@minrk
Copy link
Member Author

minrk commented Aug 9, 2016

I tried putting it in __del__, but it doesn't seem to ever be called, perhaps due to circular references/global links created between pt and/or IPython.

@takluyver
Copy link
Member

There certainly are going to be circular references through IPythonPTCompleter and TerminalInteractiveShell.inputhook. But recent versions of Python should be able to break the cycle and call __del__.

@minrk
Copy link
Member Author

minrk commented Aug 9, 2016

Python 3.5 isn't recent enough, at least.

@takluyver
Copy link
Member

I've just tested with a __del__ method on TerminalInteractiveShell, and it does get called when the interpreter (3.5) exits. I was doing this to check that I hadn't misunderstood something. I don't think it's terribly important to do cleanup in __del__, and it would be better done in Eventloop.__del__ anyway. So I'm merging this as is.

@takluyver takluyver merged commit f03536e into ipython:master Aug 10, 2016
@minrk minrk deleted the reentrant-pt branch August 10, 2016 14:22
@minrk
Copy link
Member Author

minrk commented Aug 10, 2016

've just tested with a del method on TerminalInteractiveShell, and it does get called when the interpreter (3.5) exits

I did the same and it didn't (and again just now, with conda CPython 3.5.1 on OS X), so it's at least not a trustworthy event.

Agreed on the other points, though. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Problems with IPython 5
3 participants