Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Tim Golden Newsgroups: comp.lang.python Subject: Re: Spurious issue in CPython 2.7.5 Date: Wed, 25 May 2016 13:13:49 +0100 Lines: 15 Message-ID: References: <779717266.18172.1464085350716.JavaMail.open-xchange@ox.netsite.dk> <57448b9a$0$1584$c3e8da3$5496439d@news.astraweb.com> <1662586749.20172.1464177852187.JavaMail.open-xchange@ox.netsite.dk> <574596FD.4040803@timgolden.me.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de ArF/9gVtRct8N/7yBL9cXAQPkOY/gA9hXOQO9GWI1OJw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'exception.': 0.07; 'core,': 0.09; 'url:github': 0.09; 'exception': 0.13; 'interpreter': 0.15; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'subject:issue': 0.16; 'tjg': 0.16; 'wrote:': 0.16; 'code,': 0.23; '(or': 0.23; "python's": 0.23; 'header:In-Reply-To:1': 0.24; 'header:User-Agent:1': 0.26; 'arising': 0.27; '14,': 0.27; 'skip:( 20': 0.28; 'convert': 0.29; 'raise': 0.29; 'checks': 0.30; 'file': 0.34; 'but': 0.36; 'too': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'doing': 0.38; 'guys': 0.38; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'charset:windows-1252': 0.62; 'thomas': 0.63; "they're": 0.66; 'from:addr:mail': 0.70 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 In-Reply-To: <1662586749.20172.1464177852187.JavaMail.open-xchange@ox.netsite.dk> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <574596FD.4040803@timgolden.me.uk> X-Mailman-Original-References: <779717266.18172.1464085350716.JavaMail.open-xchange@ox.netsite.dk> <57448b9a$0$1584$c3e8da3$5496439d@news.astraweb.com> <1662586749.20172.1464177852187.JavaMail.open-xchange@ox.netsite.dk> Xref: csiph.com comp.lang.python:109113 On 25/05/2016 13:04, thomas povtal.org wrote: > 2016-05-24_08:15:40.84187 File "checkrc.pxd", line 14, in > zmq.core.checkrc._check_rc (zmq/core/socket.c:5932) > 2016-05-24_08:15:40.84187 OverflowError: long too big to convert That exception is arising from ZeroMQ's own code, by the look of it. (Or perhaps pyzmq). It's not impossible that it's arising ultimately from Python's interpreter core, but you'd want to take that up with the ZeroMQ guys first to see what checks they're doing which might raise that exception. https://github.com/zeromq TJG