Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #61465 > unrolled thread

Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Started byharish.barvekar@gmail.com
First post2013-12-10 05:35 -0800
Last post2013-12-10 14:54 +0000
Articles 16 — 7 participants

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Problem when applying Patch from issue1424152 to get https over  authenticating proxies working with urllib2 in Python 2.5 harish.barvekar@gmail.com - 2013-12-10 05:35 -0800
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 00:47 +1100
      Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 07:48 -0800
        Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 16:22 +0000
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rusi <rustompmody@gmail.com> - 2013-12-10 08:49 -0800
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 03:54 +1100
              Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Grant Edwards <invalid@invalid.invalid> - 2013-12-10 17:12 +0000
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 16:58 +0000
          Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 08:59 -0800
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 17:05 +0000
            Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 David Robinow <drobinow@gmail.com> - 2013-12-10 12:36 -0500
              Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 rurpy@yahoo.com - 2013-12-10 10:15 -0800
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 13:48 +0000
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 14:06 +0000
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Chris Angelico <rosuav@gmail.com> - 2013-12-11 01:14 +1100
    Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-12-10 14:54 +0000

#61465 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Fromharish.barvekar@gmail.com
Date2013-12-10 05:35 -0800
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<a57d1f96-20f4-4c12-b106-0dae360f65bf@googlegroups.com>
On Monday, July 20, 2009 11:28:53 PM UTC+5:30, tvashtar wrote:
> On Jul 20, 4:42 pm, Nike <nike...@gmail.com> wrote:
> > hi!
> >  It's looks like a ssl error . Under the following step to help u :
> >   1. takes a simple code to confirm your pupose without ssl protocol.
> >   2. to confirm python version and extended libs work well
> >   3. to confirm ssl work well.
> >
> > goog luck!
> >
> > nikekoo
> 
> I've reduced my code to the following:
> 
> import urllib2
> 
> p = "https://user:pass@myproxy:port"
> proxy_handler = urllib2.ProxyHandler({"https": p})
> urllib2.install_opener(urllib2.build_opener(proxy_handler))
> request = urllib2.Request( "https://groups.google.com")
> response = urllib2.urlopen(request)
> 
> and it is now failing with:
> 
> Traceback (most recent call last):
>   File "D:\p4\depot\Development\HEAD\Build\ReleaseSystem\DownloadSystem
> \test.py", line 12, in <module>
>     response = urllib2.urlopen(request)
>   File "C:\Python25\lib\urllib2.py", line 121, in urlopen
>     return _opener.open(url, data)
>   File "C:\Python25\lib\urllib2.py", line 379, in open
>     response = self._open(req, data)
>   File "C:\Python25\lib\urllib2.py", line 397, in _open
>     '_open', req)
>   File "C:\Python25\lib\urllib2.py", line 358, in _call_chain
>     result = func(*args)
>   File "C:\Python25\lib\urllib2.py", line 1115, in https_open
>     return self.do_open(httplib.HTTPSConnection, req)
>   File "C:\Python25\lib\urllib2.py", line 1082, in do_open
>     raise URLError(err)
> urllib2.URLError: <urlopen error Tunnel connection failed: 407 Proxy
> Authentication Required>
> 
> I thought the proxy_handler should take care of the authentication?
> 
> Thanks for your help

Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further

[toc] | [next] | [standalone]


#61466 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromChris Angelico <rosuav@gmail.com>
Date2013-12-11 00:47 +1100
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3825.1386683251.18130.python-list@python.org>
In reply to#61465
On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
> Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further

You're responding to something from 2009. It's highly likely things
have changed.

Does the same code cause an error in Python 2.7? That would be the
first thing to check.

Also: You appear to be using Google Groups, which is the Mos Eisley of
the newsgroup posting universe. You'll do far better to instead use
some other means of posting, such as the mailing list:

https://mail.python.org/mailman/listinfo/python-list

It's probably a good idea also to search the bug tracker before
posting. It may well be that this has been fixed, in which case the
tracker issue would tell you when the fix went out. Of course, it may
also state that it's not a bug, in which case you'd know why.

http://bugs.python.org/

ChrisA

[toc] | [prev] | [next] | [standalone]


#61474 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Fromrurpy@yahoo.com
Date2013-12-10 07:48 -0800
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<4ca2bd6a-715c-41e0-83ee-b61caa847912@googlegroups.com>
In reply to#61466
On 12/10/2013 06:47 AM, Chris Angelico wrote:
> On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
> Also: You appear to be using Google Groups, which is the Mos Eisley of
> the newsgroup posting universe. You'll do far better to instead use
> some other means of posting, such as the mailing list:
 
Using Google Groups is also fine.  I and many other posters here
use it.  Chris and some others here dislike Google Groups and want 
everyone to not use it, but that is their personal opinion.

If Google Groups is most convenient for you please feel free to
continue using it.  You might want to take a look at this page 
which describes how to reduce some of things that annoy people 
like Chris:

  https://wiki.python.org/moin/GoogleGroupsPython

[toc] | [prev] | [next] | [standalone]


#61475 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 16:22 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3832.1386692595.18130.python-list@python.org>
In reply to#61474
On 10/12/2013 15:48, rurpy@yahoo.com wrote:
> On 12/10/2013 06:47 AM, Chris Angelico wrote:
>> On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
>> Also: You appear to be using Google Groups, which is the Mos Eisley of
>> the newsgroup posting universe. You'll do far better to instead use
>> some other means of posting, such as the mailing list:
>
> Using Google Groups is also fine.  I and many other posters here
> use it.  Chris and some others here dislike Google Groups and want
> everyone to not use it, but that is their personal opinion.
>
> If Google Groups is most convenient for you please feel free to
> continue using it.  You might want to take a look at this page
> which describes how to reduce some of things that annoy people
> like Chris:
>
>    https://wiki.python.org/moin/GoogleGroupsPython
>

There is no "you might want to" about it.  There are two options here, 
either read and action the page so we don't see double spaced crap 
amongst other things, use another tool, or don't post.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#61482 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Fromrusi <rustompmody@gmail.com>
Date2013-12-10 08:49 -0800
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<f6aa5743-0de6-4e01-8123-3f854aea4d07@googlegroups.com>
In reply to#61475
On Tuesday, December 10, 2013 9:52:47 PM UTC+5:30, Mark Lawrence wrote:
> On 10/12/2013 15:48, rurpy wrote:
> > On 12/10/2013 06:47 AM, Chris Angelico wrote:
> >> On Wed, Dec 11, 2013 at 12:35 AM,  harish.barvekar wrote:
> >> Also: You appear to be using Google Groups, which is the Mos Eisley of
> >> the newsgroup posting universe. You'll do far better to instead use
> >> some other means of posting, such as the mailing list:
> > Using Google Groups is also fine.  I and many other posters here
> > use it.  Chris and some others here dislike Google Groups and want
> > everyone to not use it, but that is their personal opinion.
> > If Google Groups is most convenient for you please feel free to
> > continue using it.  You might want to take a look at this page
> > which describes how to reduce some of things that annoy people
> > like Chris:
> >    https://wiki.python.org/moin/GoogleGroupsPython

> There is no "you might want to" about it.  There are two options here, 
> either read and action the page so we don't see double spaced crap 
> amongst other things, use another tool, or don't post.

There are 10 kinds of people in the world: those who understand 
binary and those who dont.

[toc] | [prev] | [next] | [standalone]


#61484 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromChris Angelico <rosuav@gmail.com>
Date2013-12-11 03:54 +1100
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3839.1386694496.18130.python-list@python.org>
In reply to#61482
On Wed, Dec 11, 2013 at 3:49 AM, rusi <rustompmody@gmail.com> wrote:
> There are 10 kinds of people in the world: those who understand
> binary and those who dont.

There are 10 kinds of people in the world: those who understand Gray
Code, those who don't, and those who confuse it with binary.

ChrisA

[toc] | [prev] | [next] | [standalone]


#61489 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromGrant Edwards <invalid@invalid.invalid>
Date2013-12-10 17:12 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<l87i1c$ded$1@reader1.panix.com>
In reply to#61484
On 2013-12-10, Chris Angelico <rosuav@gmail.com> wrote:
> On Wed, Dec 11, 2013 at 3:49 AM, rusi <rustompmody@gmail.com> wrote:
>> There are 10 kinds of people in the world: those who understand
>> binary and those who dont.
>
> There are 10 kinds of people in the world: those who understand Gray
> Code, those who don't, and those who confuse it with binary.

Let me pause and reflect on that for a moment...

-- 
Grant Edwards               grant.b.edwards        Yow! All of life is a blur
                                  at               of Republicans and meat!
                              gmail.com            

[toc] | [prev] | [next] | [standalone]


#61485 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 16:58 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3840.1386694709.18130.python-list@python.org>
In reply to#61482
On 10/12/2013 16:49, rusi wrote:
> On Tuesday, December 10, 2013 9:52:47 PM UTC+5:30, Mark Lawrence wrote:
>> On 10/12/2013 15:48, rurpy wrote:
>>> On 12/10/2013 06:47 AM, Chris Angelico wrote:
>>>> On Wed, Dec 11, 2013 at 12:35 AM,  harish.barvekar wrote:
>>>> Also: You appear to be using Google Groups, which is the Mos Eisley of
>>>> the newsgroup posting universe. You'll do far better to instead use
>>>> some other means of posting, such as the mailing list:
>>> Using Google Groups is also fine.  I and many other posters here
>>> use it.  Chris and some others here dislike Google Groups and want
>>> everyone to not use it, but that is their personal opinion.
>>> If Google Groups is most convenient for you please feel free to
>>> continue using it.  You might want to take a look at this page
>>> which describes how to reduce some of things that annoy people
>>> like Chris:
>>>     https://wiki.python.org/moin/GoogleGroupsPython
>
>> There is no "you might want to" about it.  There are two options here,
>> either read and action the page so we don't see double spaced crap
>> amongst other things, use another tool, or don't post.
>
> There are 10 kinds of people in the world: those who understand
> binary and those who dont.
>

There are 10 kinds of people in the world: those who understand that 
google groups sends out double spaced crap and those who don't.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#61486 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Fromrurpy@yahoo.com
Date2013-12-10 08:59 -0800
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<3ad41081-172d-42c1-bf5a-b333e02d0fb6@googlegroups.com>
In reply to#61475
On 12/10/2013 09:22 AM, Mark Lawrence wrote:
> On 10/12/2013 15:48, rurpy@yahoo.com wrote:
> [...]
> There is no "you might want to" about it.  There are two options here, 
> either read and action the page so we don't see double spaced crap 
> amongst other things, use another tool, or don't post.

Mark is one of the resident trolls here.  Among his other traits 
is his delusion that he is Lord High Commander of this list.
Like with other trolls, the best advice is to ignore him (which
I'm not doing this once as a public service).

[toc] | [prev] | [next] | [standalone]


#61488 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 17:05 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3841.1386695173.18130.python-list@python.org>
In reply to#61486
On 10/12/2013 16:59, rurpy@yahoo.com wrote:
> On 12/10/2013 09:22 AM, Mark Lawrence wrote:
>> On 10/12/2013 15:48, rurpy@yahoo.com wrote:
>> [...]
>> There is no "you might want to" about it.  There are two options here,
>> either read and action the page so we don't see double spaced crap
>> amongst other things, use another tool, or don't post.
>
> Mark is one of the resident trolls here.  Among his other traits
> is his delusion that he is Lord High Commander of this list.
> Like with other trolls, the best advice is to ignore him (which
> I'm not doing this once as a public service).
>

That is entirely correct.  I also spend a lot of my time defending the 
indefensible, like defending people who use crap tools to send double 
spaced crap around the whole world.  Not.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#61490 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromDavid Robinow <drobinow@gmail.com>
Date2013-12-10 12:36 -0500
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3842.1386697012.18130.python-list@python.org>
In reply to#61486
On Tue, Dec 10, 2013 at 11:59 AM,  <rurpy@yahoo.com> wrote:
> On 12/10/2013 09:22 AM, Mark Lawrence wrote:
...
> Mark is one of the resident trolls here.  Among his other traits
> is his delusion that he is Lord High Commander of this list.
> Like with other trolls, the best advice is to ignore him (which
> I'm not doing this once as a public service).
Please don't do this. I can decide for myself whether I prefer to read
Mark's posts.
[By the way, I don't consider Mark Lawrence a troll. He's just a guy
who can't help himself. I've chosen not to listen any more but others
are entitled to their own choices.]+

[toc] | [prev] | [next] | [standalone]


#61493 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

Fromrurpy@yahoo.com
Date2013-12-10 10:15 -0800
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<e7b27a0f-f835-41fe-98f1-450560975ed4@googlegroups.com>
In reply to#61490
On 12/10/2013 10:36 AM, David Robinow wrote:
> On Tue, Dec 10, 2013 at 11:59 AM,  <rurpy@yahoo.com> wrote:
>> On 12/10/2013 09:22 AM, Mark Lawrence wrote:
> ...
>> Mark is one of the resident trolls here.  Among his other traits
>> is his delusion that he is Lord High Commander of this list.
>> Like with other trolls, the best advice is to ignore him (which
>> I'm not doing this once as a public service).
>
> Please don't do this. I can decide for myself whether I prefer to read
> Mark's posts.

I didn't post it for you, I posted it for the OP who
may be new here (or may not, I didn't check) and for 
others from Google Groups who may erroneously think
that Mark/Chris et.al. have some kind of authority or
speak for everyone here.
 
Nor was it a suggestion to not read Mark's posts but
a suggestion to not add to the flamage.

> [By the way, I don't consider Mark Lawrence a troll. He's just a guy
> who can't help himself. I've chosen not to listen any more but others
> are entitled to their own choices.]+

[toc] | [prev] | [next] | [standalone]


#61467 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 13:48 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3826.1386683310.18130.python-list@python.org>
In reply to#61465
On 10/12/2013 13:35, harish.barvekar@gmail.com wrote:
> On Monday, July 20, 2009 11:28:53 PM UTC+5:30, tvashtar wrote:
>> On Jul 20, 4:42 pm, Nike <nike...@gmail.com> wrote:
>>> hi!
>>>   It's looks like a ssl error . Under the following step to help u :
>>>    1. takes a simple code to confirm your pupose without ssl protocol.
>>>    2. to confirm python version and extended libs work well
>>>    3. to confirm ssl work well.
>>>
>>> goog luck!
>>>
>>> nikekoo
>>
>> I've reduced my code to the following:
>>
>> import urllib2
>>
>> p = "https://user:pass@myproxy:port"
>> proxy_handler = urllib2.ProxyHandler({"https": p})
>> urllib2.install_opener(urllib2.build_opener(proxy_handler))
>> request = urllib2.Request( "https://groups.google.com")
>> response = urllib2.urlopen(request)
>>
>> and it is now failing with:
>>
>> Traceback (most recent call last):
>>    File "D:\p4\depot\Development\HEAD\Build\ReleaseSystem\DownloadSystem
>> \test.py", line 12, in <module>
>>      response = urllib2.urlopen(request)
>>    File "C:\Python25\lib\urllib2.py", line 121, in urlopen
>>      return _opener.open(url, data)
>>    File "C:\Python25\lib\urllib2.py", line 379, in open
>>      response = self._open(req, data)
>>    File "C:\Python25\lib\urllib2.py", line 397, in _open
>>      '_open', req)
>>    File "C:\Python25\lib\urllib2.py", line 358, in _call_chain
>>      result = func(*args)
>>    File "C:\Python25\lib\urllib2.py", line 1115, in https_open
>>      return self.do_open(httplib.HTTPSConnection, req)
>>    File "C:\Python25\lib\urllib2.py", line 1082, in do_open
>>      raise URLError(err)
>> urllib2.URLError: <urlopen error Tunnel connection failed: 407 Proxy
>> Authentication Required>
>>
>> I thought the proxy_handler should take care of the authentication?
>>
>> Thanks for your help
>
> Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further
>

Please read the whole history of this here 
http://bugs.python.org/issue1424152

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#61469 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 14:06 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3828.1386684403.18130.python-list@python.org>
In reply to#61465
On 10/12/2013 13:47, Chris Angelico wrote:
> On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
>> Is this issue fixed. I am also facing the same issue of tunneling in https request. Please suggest how to proceed further
>
> You're responding to something from 2009. It's highly likely things
> have changed.
>

Says who?  Sadly IMHO this has been one of the worst aspects of Python 
development.  I've seen 10 year old bugs happily sitting on the bug 
tracker.  Thankfully that is slowly changing.  The core mentorship 
program is helping, plus the gradual reduction in the number of versions 
that need supporting as 2.6 is now out of support and we move towards 
3.4.  However there are still 4275 open issues on the bug tracker. 
Anyone up to help out, the pay and perks are really good? :)

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#61470 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromChris Angelico <rosuav@gmail.com>
Date2013-12-11 01:14 +1100
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3829.1386684865.18130.python-list@python.org>
In reply to#61465
On Wed, Dec 11, 2013 at 1:06 AM, Mark Lawrence <breamoreboy@yahoo.co.uk> wrote:
> On 10/12/2013 13:47, Chris Angelico wrote:
>>
>> On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
>>>
>>> Is this issue fixed. I am also facing the same issue of tunneling in
>>> https request. Please suggest how to proceed further
>>
>>
>> You're responding to something from 2009. It's highly likely things
>> have changed.
>>
>
> Says who?  Sadly IMHO this has been one of the worst aspects of Python
> development.  I've seen 10 year old bugs happily sitting on the bug tracker.
> Thankfully that is slowly changing.  The core mentorship program is helping,
> plus the gradual reduction in the number of versions that need supporting as
> 2.6 is now out of support and we move towards 3.4.  However there are still
> 4275 open issues on the bug tracker. Anyone up to help out, the pay and
> perks are really good? :)

There've been two minor versions since the version cited in the post
(2.5), not counting Python 3 at all. It's definitely worth rechecking
on 2.7 or 3.3, to see if the same still occurs. (Or, of course, to
read the tracker issue, which in this case was known and needn't be
searched for, a fact that I missed noticing when I went reading.) Yes,
four years' worth of bug fixes does make it at least somewhat likely
that something's changed.

ChrisA

[toc] | [prev] | [next] | [standalone]


#61472 — Re: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2013-12-10 14:54 +0000
SubjectRe: Problem when applying Patch from issue1424152 to get https over authenticating proxies working with urllib2 in Python 2.5
Message-ID<mailman.3831.1386687300.18130.python-list@python.org>
In reply to#61465
On 10/12/2013 14:14, Chris Angelico wrote:
> On Wed, Dec 11, 2013 at 1:06 AM, Mark Lawrence <breamoreboy@yahoo.co.uk> wrote:
>> On 10/12/2013 13:47, Chris Angelico wrote:
>>>
>>> On Wed, Dec 11, 2013 at 12:35 AM,  <harish.barvekar@gmail.com> wrote:
>>>>
>>>> Is this issue fixed. I am also facing the same issue of tunneling in
>>>> https request. Please suggest how to proceed further
>>>
>>>
>>> You're responding to something from 2009. It's highly likely things
>>> have changed.
>>>
>>
>> Says who?  Sadly IMHO this has been one of the worst aspects of Python
>> development.  I've seen 10 year old bugs happily sitting on the bug tracker.
>> Thankfully that is slowly changing.  The core mentorship program is helping,
>> plus the gradual reduction in the number of versions that need supporting as
>> 2.6 is now out of support and we move towards 3.4.  However there are still
>> 4275 open issues on the bug tracker. Anyone up to help out, the pay and
>> perks are really good? :)
>
> There've been two minor versions since the version cited in the post
> (2.5), not counting Python 3 at all. It's definitely worth rechecking
> on 2.7 or 3.3, to see if the same still occurs. (Or, of course, to
> read the tracker issue, which in this case was known and needn't be
> searched for, a fact that I missed noticing when I went reading.) Yes,
> four years' worth of bug fixes does make it at least somewhat likely
> that something's changed.
>
> ChrisA
>

How many minor versions since this was created on 2002-01-16 at 04:56 
http://bugs.python.org/issue504219  ?  The issue originally referenced 
is closed, this is still open.  Age on the bug tracker is no guarantee 
of anything, except that the issue exists.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web