Tagged Questions
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
...
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 ...
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 ...
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)
...
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 ...
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 ...
0
votes
1answer
118 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
...
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 ...
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 ...
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
5answers
311 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 ...
0
votes
1answer
55 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 ...
1
vote
1answer
293 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}
...
0
votes
3answers
217 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 ...
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()
>>> ...
3
votes
4answers
415 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 ...
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)
3
votes
2answers
162 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
2answers
520 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'
...
0
votes
2answers
121 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 ...
5
votes
2answers
290 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 ...
2
votes
3answers
520 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
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 ...
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 = [], ...
2
votes
3answers
828 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
788 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
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
1answer
405 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
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 ...