[issue14892] 'import readline' hangs when launching with '' on BSD and OS X

2012-10-22 Thread olivier-mattelaer
olivier-mattelaer added the comment: Thanks a lot Ronald. Cheers, Olivier -- status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14892

[issue14892] 'import readline' fails when launching with ''

2012-05-23 Thread olivier-mattelaer
New submission from olivier-mattelaer olivier.mattel...@uclouvain.be: Hi Everyone, I have found a strange behavior of the import command for the routine readline: The commands (put in the file test.py) is simply: import readline print readline.__doc__ If I run this programs normally (i.e

[issue8620] wrong truncation of last line in cmd.Cmd

2010-08-02 Thread Mattelaer
Mattelaer olivier.mattel...@uclouvain.be added the comment: Thanks a lot for the fix. On 02-août-10, at 01:58, R. David Murray wrote: R. David Murray rdmur...@bitdance.com added the comment: Thanks, Éric. Fixed. -- ___ Python tracker rep

[issue8620] wrong truncation of line in Cmd.cmd

2010-05-05 Thread Mattelaer
New submission from Mattelaer olivier.mattel...@uclouvain.be: When using the Cmd module on a file. it happens that the last line is truncated from the last caracther. The problem is simply that it can happen that the last line doesn't finish by '\n' charcacter. In consequence the line which

[issue7053] wrong overload of slot wrapper

2009-10-04 Thread Mattelaer
New submission from Mattelaer olivier.mattel...@uclouvain.be: wrong redirection of slot wrapper: class.__iter__=list.__iter__ doesn't work. (the __iter__ still refer to the one define in class) The file in attachment shows an example of this problem -- components: None files: test.py