[issue22181] os.urandom() should use Linux 3.17 getrandom() syscall

2014-10-05 Thread anand jeyahar
anand jeyahar added the comment: Hi, This will need latest kernel to develop, fix and test. I (on Debian 7) couldn't find the latest kernel, but picked up ubuntu kernel from here http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.17-rc7-utopic/. I picked up the latest i.e: linux-image

[issue8492] Addition to readline module to get dictionary of keystrokes and commands

2012-10-11 Thread anand jeyahar
Changes by anand jeyahar anand.jeya...@gmail.com: -- nosy: +anand.jeyahar ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8492 ___ ___ Python-bugs

[issue8492] Addition to readline module to get dictionary of keystrokes and commands

2012-10-11 Thread anand jeyahar
anand jeyahar added the comment: Here's what the original maintainer chet romney had to say about this functionality not being a part of readline, and should be implemented by the calling application. From Chet Ramey: -- The answer is that this is very similar to the operate-and-get

[issue13004] pprint: add option to truncate sequences

2011-09-19 Thread anand jeyahar
anand jeyahar anand.jeya...@gmail.com added the comment: Umm... Excuse me but how is this max_length parameter different from the (existing)depth parameter? pformat(object,depth=3) seems to do the same thing. -- nosy: +anandjeyahar ___ Python

[issue12381] refactor slice checks made by methods that take slice like arguments

2011-07-17 Thread anand jeyahar
anand jeyahar anand.jeya...@gmail.com added the comment: I started working on this. But found sliceobject.c. Think it would be a good idea to add the refactored functions there. Anyway, i was trying to figure out the functionality of sliceobject.c. Can someone put up a use/test case example