emacs shell hangs on W32 with python

2006-11-02 Thread emin . shopper
Emacs seems to freeze when doing certain shell commands on Microsoft Windows. The following is a simple example with Xemacs: -- [Xemacs version 21.4.19; January 2006] Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft

Re: emacs shell hangs on W32 with python

2006-11-03 Thread emin . shopper
Hmm, it doesn't even work if I run the cygwin version of GNU Emacs and have it start the Windows version of python through python-mode or if I start a shell in emacs and then start the Windows version of python through the shell. Interestingly, however, things DO seem to work if I use cygwin emacs

Re: emacs shell hangs on W32 with python

2006-11-03 Thread emin . shopper
The same problems occur with the latest emacs binary from CVS (emacs-version) "GNU Emacs 23.0.0.1 (i386-mingw-nt5.1.2600) of 2006-10-16 on DTOP" Lennart Borgman wrote: > Would it not be a good idea to try the CVS version of Emacs for this now > since the pretest will soon begin? Go here for preco

Re: emacs shell hangs on W32 with python

2006-11-03 Thread emin . shopper
Lennart Borgman wrote: > Could you then please post a bug report? Just choose "Help - Send bug > report" from the menus. I sent a bug-report to the emacs list as requested and got an email reply saying the message is being held for a moderator to look at. Since the bug seems to be in the interacti

Re: I'm looking for a pythonic red-black tree...

2006-12-15 Thread emin . shopper
You could try and wrap the C/C++ code at http://web.mit.edu/~emin/www/source_code/index.html and make a python extension... On Dec 14, 8:20 pm, "Just Another Victim of the Ambient Morality" <[EMAIL PROTECTED]> wrote: > I need a red-black tree in Python and I was wondering if there was one > bu

module to implement Abstract Base Class

2006-12-22 Thread emin . shopper
I had a need recently to check if my subclasses properly implemented the desired interface and wished that I could use something like an abstract base class in python. After reading up on metaclass magic, I wrote the following module. It is mainly useful as a light weight tool to help programmers c