[issue1560032] confusing error msg from random.randint

2010-07-24 Thread Petras Zdanavičius
Petras Zdanavičius added the comment: I have written a patch thats makes these strange error messages go away. What actually I have done was something like this: >>> randint = _inst.randint Was replaced with: >>> def randint(a, b): return _inst.randint(a, b) But I

[issue6878] changed return type from tkinter.Canvas.coords

2010-07-23 Thread Petras Zdanavičius
Petras Zdanavičius added the comment: I have added tests. -- nosy: +Petras.Zdanavičius Added file: http://bugs.python.org/file18142/fix-6878-with-tests.patch ___ Python tracker <http://bugs.python.org/issue6