[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Stephen J. Turnbull
Hao Hu writes: > > On 17 Dec 2021, at 15:28, Chris Angelico wrote: > > The built-in hash() function is extremely generic, so it can't really > > work that way. Adding a parameter to it would require (a) adding the > > parameter to every __hash__ method of every object, including > >

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Hao Hu
> On 17 Dec 2021, at 15:49, Chris Angelico wrote: > > On Sat, Dec 18, 2021 at 1:44 AM Hao Hu wrote: >>> For that sort of thing, it may be more practical to use your own >>> hashing function, possibly a cryptographically secure one. The precise >>> hashing function used by Python isn't

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Chris Angelico
On Sat, Dec 18, 2021 at 2:21 AM Hao Hu wrote: > Great question. I agree that there could be other factors which slow things > down much more than the hash function. > I assume that this is a function that’ll be potentially called a lot of > times, and the cumulated cost won’t be negligible. >

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Hao Hu
> On 17 Dec 2021, at 15:42, Steven D'Aprano wrote: > > On Fri, Dec 17, 2021 at 02:07:38PM -, Hao Hu wrote: >> Hi, >> >> I am wondering if it would be good to add an additional keyword `seed` >> to the builtin function *hash* to allow us to set arbitrary seed to >> ensure reproducible

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Chris Angelico
On Sat, Dec 18, 2021 at 1:44 AM Hao Hu wrote: > > For that sort of thing, it may be more practical to use your own > > hashing function, possibly a cryptographically secure one. The precise > > hashing function used by Python isn't guaranteed, so if you need it to > > be stable across different

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Steven D'Aprano
On Fri, Dec 17, 2021 at 02:07:38PM -, Hao Hu wrote: > Hi, > > I am wondering if it would be good to add an additional keyword `seed` > to the builtin function *hash* to allow us to set arbitrary seed to > ensure reproducible results. I assume you are talking about hashing strings, I

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Hao Hu
> On 17 Dec 2021, at 15:28, Chris Angelico wrote: > > On Sat, Dec 18, 2021 at 1:21 AM Hao Hu wrote: >> >> Hi, >> >> I am wondering if it would be good to add an additional keyword `seed` to >> the builtin function *hash* to allow us to set arbitrary seed to ensure >> reproducible results.

[Python-ideas] Re: set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Chris Angelico
On Sat, Dec 18, 2021 at 1:21 AM Hao Hu wrote: > > Hi, > > I am wondering if it would be good to add an additional keyword `seed` to the > builtin function *hash* to allow us to set arbitrary seed to ensure > reproducible results. > The built-in hash() function is extremely generic, so it can't

[Python-ideas] set arbitrary hash random seed to ensure reproducible results

2021-12-17 Thread Hao Hu
Hi, I am wondering if it would be good to add an additional keyword `seed` to the builtin function *hash* to allow us to set arbitrary seed to ensure reproducible results. As far as I know, there exists already the environment variable PYTHONHASHSEED that allows us to set arbitrary seed or