"Christian Heimes" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
| Shorah!
|
| I've started to work on a pyvm module patch today. The new
| module is going to contain low level interfaces to Python's VM and some
| low level types, too. So far my first version contains only a bunch of
| types.
|
| What methods do you like to move to the new module? I was thinking about
| sys.get/setcheckinterval, sys.get/setrecursionlimit, sys.getrefcount,
| sys.gettotalrefcount.

These are seem vm related to me too.

|Maybe sys._current_frames, sys._getframe and

Hmm.  The idea of execution frames strikes me as somewhat independent of 
vm.  In practice, they are associated with exceptions and tracebacks.  If 
these were also split off from sys in another separate module, I would look 
there for the frame functions.

| sys.builtin_module_names, too.

This strikes me as a packaging issue rather than vm issue.

tjr



_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to