Re: [Python-Dev] [RELEASED] Python 3.4.0 release candidate 1

2014-02-11 Thread Victor Stinner
Hi, It would be nice to give also the link to the whole changelog in your emails and on the website: http://docs.python.org/3.4/whatsnew/changelog.html Congrats for your RC1 release :-) It's always hard to make developers stop addings new minor changes before the final version :-) Victor

[Python-Dev] [PATCH] Add an authorization header to the initial request.

2014-02-11 Thread Matěj Cepl
Many websites (e.g. GitHub API) on the Internet are intentionally not following RFC with regards to the Basic Authorization and require Authorization header in the initial request and they never return 401 error. Therefore it is not possible to authorize with such websites just using urllib2.py

Re: [Python-Dev] [PATCH] Add an authorization header to the initial request.

2014-02-11 Thread Terry Reedy
On 2/11/2014 6:03 AM, Matěj Cepl wrote: Suggested fix for bug# 19494 This is my first attempt to contribute to Python itself, so please be gentle with me. Yes, I know that I miss unit tests and port to other branches of Python (this is against 2.7), but I would like first some feedback to see

Re: [Python-Dev] [RELEASED] Python 3.4.0 release candidate 1

2014-02-11 Thread David Robinow
On Tue, Feb 11, 2014 at 5:45 AM, Terry Reedy tjre...@udel.edu wrote: On 2/11/2014 5:13 AM, Terry Reedy wrote: ... I installed 64 bit 3.3.4 yesterday with no problem. I reran it today in repair mode and again, no problem. With 64 bit 3.4.0, I get There is a problem with this Windows

Re: [Python-Dev] [PATCH] Add an authorization header to the initial request.

2014-02-11 Thread Matěj Cepl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2014-02-11, 12:27 GMT, you wrote: This is my first attempt to contribute to Python itself, so please be gentle with me. Yes, I know that I miss unit tests and port to other branches of Python (this is against 2.7), but I would like first

Re: [Python-Dev] [PATCH] Add an authorization header to the initial request.

2014-02-11 Thread Eric V. Smith
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/11/2014 08:04 AM, Matěj Cepl wrote: On 2014-02-11, 12:27 GMT, you wrote: This is my first attempt to contribute to Python itself, so please be gentle with me. Yes, I know that I miss unit tests and port to other branches of Python (this is

[Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Guido van Rossum
I don't happen to have OpenSSL configured on my OSX dev box right now. This usually leads to some warnings during the build stage and obviously various ssl-based tests don't work, but I can still get other stuff done. But with the latest repo, make install refuses to complete -- it ends fatally as

Re: [Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Donald Stufft
On Feb 11, 2014, at 12:30 PM, Guido van Rossum gu...@python.org wrote: I don't happen to have OpenSSL configured on my OSX dev box right now. This usually leads to some warnings during the build stage and obviously various ssl-based tests don't work, but I can still get other stuff done. But

Re: [Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Guido van Rossum
Thanks, I discovered ENSUREPIP=no right after posting, but agreed it should print an intelligible error message instead of giving a traceback. On Tue, Feb 11, 2014 at 10:15 AM, Donald Stufft don...@stufft.io wrote: On Feb 11, 2014, at 12:30 PM, Guido van Rossum gu...@python.org wrote: I

[Python-Dev] bugs.python.org/review (DEBUG = True)?

2014-02-11 Thread Christopher Welborn
Is there a reason bugs.python.org/review is running in DEBUG mode right now? I was just poking around and came across the debug 'DoesNotExist' error page when accessing: http://bugs.python.org/review/rss/reviews/cjwelborn Then, instead of a 404 I get the 'Page not found' debug page. So,

Re: [Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Nick Coghlan
Right, I think this is a genuine bug in the ensurepip CLI mode. http://bugs.python.org/issue19744 was still pending with Tim (to see if it solved the original problem), but we need to more gracefully handle the error at the CLI level as well. ___

Re: [Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Ned Deily
In article CAP7+vJ+3sxE6LNt8QeHdni3-E4RwNTpqLVqNsGKLppCMWGA=y...@mail.gmail.com, Guido van Rossum gu...@python.org wrote: I don't happen to have OpenSSL configured on my OSX dev box right now. This usually leads to some warnings during the build stage and obviously various ssl-based tests

Re: [Python-Dev] Is the PIP requirement too strict?

2014-02-11 Thread Guido van Rossum
To follow up, Ned diagnosed this for me off-list. The cause was my recent upgrade to Mavericks, which causes the Xcode 5 command line tools to be installed differently. In case others have the same issue, the solution was to run: xcode-select --install (and accept the dialog box it pops up).