Re: python hash() function

2008-03-25 Thread Alvin Delagon
Thanks for the fast replies guys. Very much appreciated. :) --- Alvin -- http://mail.python.org/mailman/listinfo/python-list

Re: python hash() function

2008-03-25 Thread Dan Bishop
On Mar 25, 9:22 pm, "Terry Reedy" <[EMAIL PROTECTED]> wrote: > "Alvin Delagon" <[EMAIL PROTECTED]> wrote in message > > news:[EMAIL PROTECTED] > | Hello, > | > | >>> hash("foobar") > | -1969371895 > | > | Anyone can explain to me how the hash() function in python does its work? > A > | link to its

Re: python hash() function

2008-03-25 Thread Christian Heimes
Alvin Delagon schrieb: > Hello, > hash("foobar") > -1969371895 > > Anyone can explain to me how the hash() function in python does its work? A > link to its source could help me a lot also. I'm looking for a way to > replicate this function in php. Thanks in advance. The code is in Objects/

Re: python hash() function

2008-03-25 Thread Terry Reedy
"Alvin Delagon" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | Hello, | | >>> hash("foobar") | -1969371895 | | Anyone can explain to me how the hash() function in python does its work? A | link to its source could help me a lot also. I'm looking for a way to | replicate this funct

python hash() function

2008-03-25 Thread Alvin Delagon
Hello, >>> hash("foobar") -1969371895 Anyone can explain to me how the hash() function in python does its work? A link to its source could help me a lot also. I'm looking for a way to replicate this function in php. Thanks in advance. --- Alvin -- http://mail.python.org/mailman/listinfo/python