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


Groups > comp.lang.python > #58128

Re: function got multiple values for keyword argument for value

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsreader4.netcologne.de!news.netcologne.de!xlned.com!feeder3.xlned.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.029
X-Spam-Evidence '*H*': 0.94; '*S*': 0.00; 'argument': 0.05; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:values': 0.16; 'traceback.': 0.16; 'value"': 0.16; 'exception': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'code,': 0.22; 'example': 0.22; 'error': 0.23; '31,': 0.24; 'fine': 0.24; 'looks': 0.24; 'header:In-Reply-To:1': 0.27; 'function': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'quite': 0.32; 'maybe': 0.34; 'skip:s 30': 0.35; 'definition': 0.35; 'received:google.com': 0.35; 'keyword': 0.36; 'to:addr :python-list': 0.38; 'to:addr:python.org': 0.39; 'full': 0.61; "you're": 0.61; 'show': 0.63; 'cut': 0.74; '2013': 0.98
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=aA788n2ngZQTktvPWtTm+P9s4NOod/amQ0y1G9xDqqA=; b=DuvPv1MJDZakD4kIL2OuX5+LfTv52pZNiXLnDFJH/2V0//Fl6S30R+vR4X+dQJv+K9 qtrlfeE87MSBgZboRFFjieuWtM7p0c/NnBXSey7O3Ap+lkfckNMMu1Oei629rpxnFsjf ns7dmSunm513vfby4x7guTEIKb/gDd5tgZz+XNeASNXdN76m53oy7ZB5LjZKmAPcZHuD zeV4e4h7X27SOb7Ckpr2/FysqQjYOcqgI78TNUzZleZ/pFSvq3fkktJQdX0dbvWPLRxe 2eRazC/GGu+H8OVgs6se+J1PJIVXH4V0lAJ2biVMgeXxdUJ8hc4+ev+CtA6YJsGLC5Ri 50sQ==
MIME-Version 1.0
X-Received by 10.68.134.98 with SMTP id pj2mr7298028pbb.110.1383168819499; Wed, 30 Oct 2013 14:33:39 -0700 (PDT)
In-Reply-To <3c5cfc8d-885e-439d-8e66-5c7630e00cb8@googlegroups.com>
References <3c5cfc8d-885e-439d-8e66-5c7630e00cb8@googlegroups.com>
Date Thu, 31 Oct 2013 08:33:39 +1100
Subject Re: function got multiple values for keyword argument for value
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
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.1852.1383168829.18130.python-list@python.org> (permalink)
Lines 13
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1383168829 news.xs4all.nl 15992 [2001:888:2000:d::a6]:42451
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:58128

Show key headers only | View raw


On Thu, Oct 31, 2013 at 8:10 AM,  <kavithabhaskaran2013@gmail.com> wrote:
> search(lane,value=None,start=105,stop=115,GUI=True) -> function definition
> search(lane,value=value,start=start, stop=stop,GUI=True) -> function call
>
> I get the error "search()" got multiple keyword argument for value"

Cut your example down to just what you need to show the problem, and
then copy and paste both the code and the full exception traceback. I
suspect it's not quite what you think it is... maybe you're not
looking at the right line of code, because that function call looks
fine to me.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

function got multiple values for keyword argument for value kavithabhaskaran2013@gmail.com - 2013-10-30 14:10 -0700
  Re: function got multiple values for keyword argument for value John Gordon <gordon@panix.com> - 2013-10-30 21:14 +0000
    Re: function got multiple values for keyword argument for value kavithabhaskaran2013@gmail.com - 2013-10-30 14:21 -0700
  Re: function got multiple values for keyword argument for value Chris Angelico <rosuav@gmail.com> - 2013-10-31 08:33 +1100
  Re: function got multiple values for keyword argument for value Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-30 21:34 +0000
    Re: function got multiple values for keyword argument for value KR <kavithabhaskaran2013@gmail.com> - 2013-10-30 14:50 -0700
      Re: function got multiple values for keyword argument for value KR <kavithabhaskaran2013@gmail.com> - 2013-10-30 14:56 -0700
        Re: function got multiple values for keyword argument for value Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-30 22:10 +0000
      Re: function got multiple values for keyword argument for value Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-30 22:08 +0000

csiph-web