[issue24513] decimal test version mismatch

2015-06-26 Thread Rusi
Rusi added the comment: On Fri, Jun 26, 2015 at 4:29 PM, Stefan Krah wrote: > > Stefan Krah added the comment: > > For libmpdec (and thus _decimal) I've always used the latest version > of dectest.zip. Upgrading decimaltestdata/* will not make any difference. > Not s

[issue24513] decimal test version mismatch

2015-06-25 Thread Rusi
New submission from Rusi: In http://bugs.python.org/issue24507 there was an apprehension about changing the decimal test versions. Poking around I find that the versions in headers of files in Lib/test/decimaltestdata refer to version 2.59 and the IBM link http://www2.hursley.ibm.com/decimal

[issue24507] CRLF issues

2015-06-25 Thread Rusi
Rusi added the comment: The newest (at least newer) version seems to be http://speleotrove.com/decimal/ Top of page says: Welcome to the General Decimal Arithmetic website, which is now hosted at speleotrove.com. The page and file names here have not been changed from the names used on the

[issue24507] CRLF issues

2015-06-24 Thread Rusi
New submission from Rusi: While trying to freshly setup a CPython repo, encountered the following CRLF issues: Mixed file -- both LF and CRLF (line 29 LF rest CRLF) Lib/venv/scripts/nt/Activate.ps1 Lib/test/decimaltestdata is a directory with mixed up files -- ie some CRLF some LF files

[issue23792] help crash leaves terminal in raw mode

2015-03-27 Thread Rusi
New submission from Rusi: Start python3.4 Do help(something) which invokes the pager Ctrl-C A backtrace results and after that the terminal is in raw mode even after exiting python [python 3.4 under debian testing with xfce4] -- components: IDLE messages: 239417 nosy: RusiMody

[issue20167] Exception on IDLE closing

2014-10-09 Thread Rusi
Rusi added the comment: On Fri, Oct 10, 2014 at 8:49 AM, Rustom Mody wrote: > On Fri, Oct 10, 2014 at 8:46 AM, Terry J. Reedy > wrote: >> >> Terry J. Reedy added the comment: >> >> I verified that problem had returned on Windows as well. It would be good >&g

[issue20167] Exception on IDLE closing

2014-10-09 Thread Rusi
Rusi added the comment: On Fri, Oct 10, 2014 at 8:46 AM, Terry J. Reedy wrote: > > Terry J. Reedy added the comment: > > I verified that problem had returned on Windows as well. It would be good to > have a test that would fail if the tcl error messag

[issue20167] Exception on IDLE closing

2014-10-09 Thread Rusi
Rusi added the comment: Just confirming: idle 3.4.1-1 on debian testing Start idle3 Open recent file -> some file Close file Close interpreter (and idle) Get this Exception ignored in: > Traceback (most recent call last): File "/usr/lib/python3.4/idlelib/MultiCall.py", line

[issue10685] trace does nto ignore --ignore-module

2010-12-12 Thread Rusi
New submission from Rusi : When running trace, I get a a lot of lines like: filename: /usr/lib/python2.7/cmd.py, modulename: cmd, funcname: Cmd That is to say system modules are shown in the trace whereas I only want to see the code I am working on Ive tried python2.7 -m trace --listfuncs

[issue10669] Remove Deprecation Warnings

2010-12-10 Thread Rusi
Rusi added the comment: Hi Eric Sorry for not being clear. This is more of a feature request than a bug report as suggested by Terry Reedy on the python mailing list (see here http://mail.python.org/pipermail/python-list/2010-December/1262149.html The warnings are in my code. The main

[issue10669] Remove Deprecation Warnings

2010-12-09 Thread Rusi
New submission from Rusi : I am trying to port some app from 2.x to 3.x Terry Reedy suggested using 2.7 I get deprecation warnings (with -3 flag) I would be good to have a place to check all such and have suggested solutions -- components: 2to3 (2.x to 3.0 conversion tool) messages