> I use REPL extensively while programming in Lisp and Python. Is there > any way to enable REPL in TurboGears? It would be nice to be able, for > example, to perform some queries or redefine some functions on a > running server.
I think the concept of a event-loop (as in web-server and gui apps for example) doesn't fit too well with a REPL. However, what I do is this: I put the following snipplet on a piece of code I want to dig into, and possibly experiment: import pdb pdb.set_trace() Then you get your REPL - sort of. HTH Diez --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

