The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
206 views

Can Racket macros take keyword arguments?

I'd like to create a syntactic form in Racket that can accept a keyword argument, the way some functions can. Having reduced it to a simple example, I tried writing: (define-syntax sum-of-products ...
6
votes
2answers
125 views

List comprehension in function arguments

In Python 2.7.1, I'm trying to provide a list of messages as the first argument, and a list of colors as the second argument. I want the second argument to default to a list of whites if it's not ...
6
votes
2answers
97 views

How can I prevent a positional argument from being expanded into keyword arguments?

I'd like to have a method that accepts a hash and an optional keyword argument. I tried defining a method like this: def foo_of_thing_plus_amount(thing, amount: 10) thing[:foo] + amount end When ...
5
votes
1answer
125 views

Python accepts keyword arguments in CPython functions?

I use python3.3 and just found out that it accepts keyword arguments in some of its CPython functions: >>> "I like python!".split(maxsplit=1) ['I', 'like python!'] But some other functions ...
5
votes
2answers
289 views

How can I treat positional arguments as keyword arguments in Python 2

For a decorator I am writing I would like to manipulate a specific named parameter of a function. Consider the following decorator: def square_param(param): def func_decorator(func): def ...
4
votes
3answers
123 views

Keyword argument performance (python)

I am trying to optimise some python code, via testing (timing) various functions using timeit. I have found that I am getting different speeds depending on whether a variable is a keyword argument ...
3
votes
4answers
413 views

Can I use a dynamic mapping to unpack keyword arguments in Python?

Long story short, I want to call format with arbitrarily named arguments, which will preform a lookup. '{Thing1} and {other_thing}'.format(**my_mapping) I've tried implementing my_mapping like ...
3
votes
2answers
124 views

What is the Scala syntax for calling a function with variadic arguments but with named arguments?

Say I have a function def f(a:Int = 0, b:String = "", c:Float=0.0, foos: Foo*) { ... } Notice the use of default arguments for some parameters. Typically, to make use of default values, you invoke ...
3
votes
2answers
161 views

Python function argument of predicate type a=b

Pardon my Python skill or the lack of it. I saw some methods calls of the form auth_req = urllib2.Request(auth_uri, data=authreq_data) If I put in just authreq_data I get an error. What is the ...
2
votes
3answers
825 views

Setting the default value of a function input to equal another input in Python

Consider the following function, which does not work in Python, but I will use to explain what I need to do. def exampleFunction(a, b, c = a): ...function body... That is I want to assign to ...
2
votes
2answers
518 views

Most pythonic way of assigning keyword arguments using a variable as keyword?

What is the most pythonic way to get around the following problem? From the interactive shell: >>> def f(a=False): ... if a: ... return 'a was True' ... return 'a was False' ...
2
votes
2answers
51 views

Does ruby 1.9.3 have keyword arguments?

All the documentation I can find says that keyword arguments weren't introduced until Ruby 2.0. But Array#shuffle looks like it takes a keyword argument called 'random': ...
2
votes
3answers
1k views

empty dictionary as default value for keyword argument in python function: dictionary seems to not be initialised to {} on subsequent calls?

Here's a function. My intent is to use keyword argument defaults to make the dictionary an empty dictionary if it is not supplied. >>> def f( i, d={}, x=3 ) : ... d[i] = i*i ... x ...
2
votes
3answers
518 views

Passing keyword arguments to a function when local variable names are same as function parameter names

Is there a more succint way to write this? f(a=a, b=b, c=c, d=d, e=e) Background: I have a function with too many arguments f(a, b, c, d, e): pass I my program I have local variables that ...
2
votes
2answers
136 views

When to use keyword arguments aka named parameters in Ruby

Ruby 2.0.0 supports keyword arguments (KA) and I wonder what the benefits/use-cases are of this feature in context of pure Ruby, especially when seen in light of the performance penalty due to the ...
2
votes
2answers
787 views

difference between default and optional arguments

okay code: #!/usr/bin/python import wx import sys class XPinst(wx.App): def __init__(self, redirect=False, filename=None): wx.App.__init__(self, redirect, filename) def ...
1
vote
5answers
308 views

python not accept keyword arguments

I am trying to make my code NOT to accept keyword arguments just like some bulitins also do not accept keyword arguments, but, I am unable to do so. Here, is my thinking according to my limited ...
1
vote
3answers
1k views

Python keyword args vs kwargs

This might be a simple question: Is there any difference between the two folowing: def myfunc(a_list = [], **kwargs): my_arg = kwargs.get('my_arg', None) pass and def myfucn(a_list = [], ...
1
vote
3answers
109 views

Python - inbound outbound argument

I've read in Expert Python Programming about this edge case. Check this code: def f(arg={}): arg['3'] = 4 return arg >>> print f() {'3': 4} >>> res = f() >>> ...
1
vote
2answers
43 views

Python keyword arguments referencing each other

When I try the following I get an error def test_func(key1=2.7, key2=key1*3.5): print(key1, key2) NameError: name 'key1' is not defined My solution would be something like def ...
1
vote
1answer
65 views

Groovy binding of keyword argument

The following code will produce an assertion error def foo(a,b,c='awesome',d=null) { assert d } foo(1,2,d='bar') Why does it give an error? Why is the keyword assignment of d not working? I ...
1
vote
1answer
289 views

Python multiprocessing keyword arguments

Here is a simple example of using keyword arguments in a function call. Nothing special. def foo(arg1,arg2, **args): print arg1, arg2 print (args) print args['x'] args ={'x':2, 'y':3} ...
1
vote
1answer
2k views

TypeError: __init__() got an unexpected keyword argument

Below is the code that I use for the form to enter new cases into the GAE datastore. When I try to enter the form I get the type error below saying I am using an unexpected keyword argument. I am new ...
1
vote
1answer
24 views

Trouble creating GAE entity

I get the following error message when I try to submit a new entity in GAE. File "C:\Users\Chris\Documents\Web Apps\legalstudybuddy\main.py", line 179, in post c = Courses(user=user, title=title) ...
1
vote
1answer
88 views

Mutability (?) of a list in python keyword argument [duplicate]

Possible Duplicate: “Least Astonishment” in Python: The Mutable Default Argument I am not sure what this is called, and thus have had difficulties finding documentation for what is going ...
1
vote
1answer
240 views

Using named arguments with variable length un-named arguments in Python

I apologize if this question has already been asked/answered, I would have expected that to be the case but was unable to find any related questions... I'd like to create a python function that takes ...
0
votes
3answers
216 views

func(*tuple) 'scatters' tuples, but how does func(**dictionary) work?

Let's create a simple tuple, dictionary and function. >>> tup = (7, 3) >>> dic = {"kw1":7, "kw2":3} >>> def pr(a, b): ... print a, b The following shows what * does ...
0
votes
2answers
110 views

How to mock functions in Python in order to change default keyword arguments

I'm using the mock library and unittest2 in order to test different aspects of my software project. At the moment I have the following question: is it possible to mock a function so that the default ...
0
votes
2answers
120 views

Manipulating large amounts of keyword arguments in a Pythonic manner

I have a class who's _init_ function requires quite a few keyword arguments. I'd like to be able to basically rewrite this bit of code so that it's syntactically cleaner (less hard coding). Preferably ...
0
votes
1answer
404 views

how can I convert a dictionary to a string of keyword arguments?

we can convert the dictionary to kw using **kw but if I want kw as str(kw) not str(dict), as I want a string with keyword arguments for code_generator, if I pass obj.method(name='name', ...
0
votes
3answers
89 views

Passing a dictionary as a function parameter and calling the function in Python

In the following code, how do I pass the dictionary to func2. How should func2 be called? def func2(a,**c): if len(c) > 0: print len(c) print c u={'a':1,'b':2} func2(1,u)
0
votes
2answers
318 views

Python keyword arguments

I have several layers of function calls, passing around a common dictionary of key word arguments: def func1(**qwargs): func2(**qwargs) func3(**qwargs) I would like to supply some default ...
0
votes
1answer
117 views

Python optional, positional and keyword arguments

This is a class I have: class metadict(dict): def __init__(self, do_something=False, *args, **kwargs) if do_something: pass ...
0
votes
0answers
21 views

New Instance gets Keyword parameter from previous instance in Python [duplicate]

I have a question regarding new instances in Python. The following code as a minimal example class A(object): def __new__(cls, *p, **k): inst = object.__new__(cls) return inst ...
0
votes
0answers
29 views

Get url in template based on keyword value passed with include in urls.py

What I need is to create set of, let's call it hidden urls, to avoid generating data to analytic. I just don't want google to count my visits. Anyway idea is that I'll do something like: # normal ...
0
votes
1answer
54 views

Member of different class instances referring to the same object via argument default value in method definition

The Python documentation says about keyword arguments (glossary): ...The variable name designates the local name in the function to which the value is assigned... Thus I thought different ...
-4
votes
1answer
82 views

I want to add Keyword Filter for a php jquery database insert [closed]

I want to add keyword filter to accept or reject the query. What i want is add only a keyword to accept. I saw this answer http://stackoverflow.com/a/4403424/1457486 but it needs keywords to reject. ...