On Sat, May 26, 2012 at 12:28 PM, Antoine Pitrou wrote:
>
> Hello,
>
> In http://bugs.python.org/issue14837 I have attached a proof-of-concept
> patch to improve the exceptions raised by the ssl module when OpenSSL
> signals an error. The current situation is quite dismal, since you get
> a someti
On 26May2012 21:28, Antoine Pitrou wrote:
| Not only does the error string contain more valuable information (the
| mnemonics "SSL" and "CERTIFICATE_VERIFY_FAILED" indicate, respectively,
| in which subpart of OpenSSL and which precise error occurred), but they
| are also introspectable:
|
| >>>
On Sat, 26 May 2012 17:44:08 -0400
Terry Reedy wrote:
> > Traceback (most recent call last):
> > [...]
> > ssl.SSLError: [Errno 5] [SSL: CERTIFICATE_VERIFY_FAILED] certificate
> > verify failed (_ssl.c:494) [88296 refs]
>
> Repeating the same reason in upper and lower case is unhelpful noise.
>
On 5/26/2012 3:28 PM, Antoine Pitrou wrote:
Hello,
In http://bugs.python.org/issue14837 I have attached a proof-of-concept
patch to improve the exceptions raised by the ssl module when OpenSSL
signals an error. The current situation is quite dismal, since you get
a sometimes cryptic error messa
On Sat, 26 May 2012 21:39:36 +0200
vinay.sajip wrote:
> return False
> _sys_home = getattr(sys, '_home', None)
> -if _sys_home and os.name == 'nt' and _sys_home.lower().endswith('pcbuild'):
> +if _sys_home and os.name == 'nt' and \
> +_sys_home.lower().endswith(('pcbuild', 'pcbuild\\amd6
Hello,
In http://bugs.python.org/issue14837 I have attached a proof-of-concept
patch to improve the exceptions raised by the ssl module when OpenSSL
signals an error. The current situation is quite dismal, since you get
a sometimes cryptic error message with no viable opportunities for
programmat
On Fri, May 25, 2012 at 10:41 AM, Barry Warsaw wrote:
> On May 25, 2012, at 10:31 AM, Brett Cannon wrote:
>
> >Is documentation coming in a separate commit?
>
> Yes. I've been reworking the import machinery documentation; it's a
> work-in-progress on the pep-420 feature clone ('importdocs' branc
On Sat, 26 May 2012 09:14:07 +0200, Georg Brandl wrote:
> Am 26.05.2012 00:44, schrieb r.david.murray:
> > http://hg.python.org/cpython/rev/0189b9d2d6bc
> > changeset: 77148:0189b9d2d6bc
> > user:R David Murray
> > date:Fri May 25 18:42:14 2012 -0400
> > summary:
> > #12586: a
Hello.
We are sorry but we cannot help you. This mailing list is to work on
developing Python (adding new features to Python itself and fixing bugs);
if you're having problems learning, understanding or using Python, please
find another forum. Probably python-list/comp.lang.python mailing list/
I think that I will make a browser in Official Python (not MacPorts
Python).
What should I do in order to install Webkit for Official Python (not
MacPorts Python) ?
from tokyo Japan.
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.or
On Sat, May 26, 2012 at 5:14 PM, georg.brandl
wrote:
> http://hg.python.org/peps/rev/cba34504163d
> changeset: 4441:cba34504163d
> user: Georg Brandl
> date: Sat May 26 09:15:01 2012 +0200
> summary:
> PEP 421 is implemented.
Did you mean to move 405 instead? 421 is accepted, bu
On 05/25/2012 10:14 AM, Antoine Pitrou wrote:
On Fri, 25 May 2012 18:57:57 +0200
Georg Brandl wrote:
This is probably minor, but wouldn't it make more sense to have those
constants uppercased? At least that's the general style we have in
the codebase for enum values.
+1, this surprised me to
On Sat, 26 May 2012 04:48:49 +0200
vinay.sajip wrote:
> +_sys_home = getattr(sys, '_home', None)
> +if _sys_home and os.name == 'nt' and _sys_home.lower().endswith('pcbuild'):
> +_sys_home = os.path.dirname(_sys_home)
What about pcbuild/amd64? Does this work on 64-bit builds?
> +_sys_home =
Am 26.05.2012 00:44, schrieb r.david.murray:
> http://hg.python.org/cpython/rev/0189b9d2d6bc
> changeset: 77148:0189b9d2d6bc
> user:R David Murray
> date:Fri May 25 18:42:14 2012 -0400
> summary:
> #12586: add provisional email policy with new header parsing and folding.
>
> W
14 matches
Mail list logo