Re: [Python-Dev] test___all__ polluting sys.modules?

2013-01-02 Thread Victor Stinner
Oh, I just remember this old issue which is somehow similar: http://bugs.python.org/issue11995 "test_pydoc loads all Python modules" Running test_pydoc in a subprocess would work around this issue. Arfrever wrote a patch, I didn't read it (sorry!). Victor ___

[Python-Dev] hgweb misconfiguration

2013-01-02 Thread Michael Foord
Hey folks, Likely the wrong place to report this, but I couldn't work out the best place and figured this is only as bad as anywhere else. A user has reported to webmaster that hgweb is misconfigured (or at least the server configuration is interfering with hgweb). The symptom is that this url

Re: [Python-Dev] PEPs in progress

2013-01-02 Thread Christian Heimes
Am 02.01.2013 11:11, schrieb Antoine Pitrou: >> PKCS #1 support should be implemented on top of OpenSSL or NaCl. I'm >> planing to use OpenSSL as primary implementation and additional code >> as fallback implementation of PBKDF2-HMAC-SHA-1, PBKDF2-HMAC-SHA-256 >> and PBKDF2-HMAC-SHA-512. > > Does

Re: [Python-Dev] PEPs in progress

2013-01-02 Thread Antoine Pitrou
Le Wed, 02 Jan 2013 11:06:07 +0100, Christian Heimes a écrit : > Am 02.01.2013 10:49, schrieb Antoine Pitrou: > > Le Wed, 2 Jan 2013 09:18:17 +0100, > > Dirkjan Ochtman a écrit : > >> On Wed, Jan 2, 2013 at 7:14 AM, Christian Heimes > >> wrote: > >>> The second PEP addresses key derivation func

Re: [Python-Dev] PEPs in progress

2013-01-02 Thread Christian Heimes
Am 02.01.2013 10:49, schrieb Antoine Pitrou: > Le Wed, 2 Jan 2013 09:18:17 +0100, > Dirkjan Ochtman a écrit : >> On Wed, Jan 2, 2013 at 7:14 AM, Christian Heimes >> wrote: >>> The second PEP addresses key derivation functions for secure >>> password hashing. I like to add PBKDF2, bcrypt and scryp

Re: [Python-Dev] PEPs in progress

2013-01-02 Thread Antoine Pitrou
Le Wed, 2 Jan 2013 09:18:17 +0100, Dirkjan Ochtman a écrit : > On Wed, Jan 2, 2013 at 7:14 AM, Christian Heimes > wrote: > > The second PEP addresses key derivation functions for secure > > password hashing. I like to add PBKDF2, bcrypt and scrypt > > facilities to the standard library. > > Hash

Re: [Python-Dev] PEPs in progress

2013-01-02 Thread Dirkjan Ochtman
On Wed, Jan 2, 2013 at 7:14 AM, Christian Heimes wrote: > The second PEP addresses key derivation functions for secure password > hashing. I like to add PBKDF2, bcrypt and scrypt facilities to the > standard library. Hashing only? I was hoping you would also include PKCS1 RSA primitives. Cheers,