[EMAIL PROTECTED] writes:

> (defun >> (val num-bytes)
>   "Right-shift positive integer val by num-bytes"
>   (floor (/ val (expt 2 num-bytes))))

or just (floor val (expt 2 num-bytes)) 

'as
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to