I want the simplest possible way to pop up simple dialogs in Python scripts. Ideally, the solution would:
Another possibility is the tkMessageBox module, which is apparently built into the standard library and is cross-platform, though this is even more ugly than the rest:
import tkMessageBox tkMessageBox.showinfo('Title','Stuff')