Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #74229
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder7.xlned.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'subject:error': 0.03; 'algorithm': 0.04; 'digest': 0.04; 'encoding': 0.05; 'error:': 0.07; 'mercurial': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; '2.7.2': 0.16; 'clone': 0.16; 'command.': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; 'fix': 0.17; 'module': 0.19; 'trying': 0.19; 'python?': 0.22; 'installation': 0.23; 'header:User-Agent:1': 0.23; 'error': 0.23; 'tells': 0.24; 'supported': 0.26; 'header:X-Complaints-To:1': 0.27; 'away.': 0.31; 'sep': 0.31; 'site)': 0.31; 'writes:': 0.31; 'could': 0.34; 'problem': 0.35; 'something': 0.35; 'etc': 0.35; 'there': 0.35; 'i.e.': 0.36; 'ubuntu': 0.36; 'charset:us-ascii': 0.36; 'too': 0.37; 'being': 0.38; 'remote': 0.38; 'machines': 0.38; 'to:addr :python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'upgrading': 0.60; 'received:217': 0.63; 'chance': 0.65; 'believe': 0.68; 'production': 0.68; 'skip:r 30': 0.69; 'presumably': 0.84; 'old.': 0.93 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | dieter <dieter@handshake.de> |
| Subject | Re: generic _ssl error |
| Date | Wed, 09 Jul 2014 07:41:05 +0200 |
| References | <53BBCA5E.8030709@chamonix.reportlab.co.uk> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| X-Gmane-NNTP-Posting-Host | pd9e099f6.dip0.t-ipconnect.de |
| User-Agent | Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.22 (linux) |
| Cancel-Lock | sha1:rq2nQavZBmFiPqf3YxZt6oXkILE= |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.11673.1404884482.18130.python-list@python.org> (permalink) |
| Lines | 27 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1404884482 news.xs4all.nl 2850 [2001:888:2000:d::a6]:42855 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:74229 |
Show key headers only | View raw
Robin Becker <robin@reportlab.com> writes: > I have the following from some production machines when trying to > clone / pull etc etc using mercurial on ubuntu 10.04 > > hg clone https://myhost/myrepos > abort: error: _ssl.c:480: error:0D0C50A1:asn1 encoding > routines:ASN1_item_verify:unknown message digest algorithm > > I believe that _ssl.c must be the _ssl.so module which presumably is > being used by the hg command. > > The system python which mercurial uses is > > Python 2.7.2 (default, Sep 20 2011, 16:38:53) > > Could this error be the result of upgrading the openssl to fix > heartbleed and not upgrading the system python? The error message tells you that a message digest algorithm is being used (liklely by the remote site) which is not supported locally. There is a big chance that this means that locally something (related with ssl/message digests - i.e. likely "OpenSSL") is too old. I would try to upgrade the "OpenSSL" installation -- and then see whether the problem goes away.
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: generic _ssl error dieter <dieter@handshake.de> - 2014-07-09 07:41 +0200
csiph-web