Tagged Questions
5
votes
2answers
615 views
Python, default keyword arguments after variable length positional arguments
I thought I could use named parameters after variable-length positional parameters in a function call, but I get a syntax error when importing a python class I'm writing with the following "get" ...
4
votes
3answers
188 views
How to use named parameters in Python methods that are defaulting to a class level value?
Usage scenario:
# case #1 - for classes
a = MyClass() # default logger is None
a = MyClass(logger="a") # set the default logger to be "a"
a.test(logger="b") # this means that logger will be "b" only ...
4
votes
5answers
764 views
Determine if a named parameter was passed
I would like to know if it is possible to determine if a function parameter with a default value was passed in Python.
For example, how does dict.pop work?
>>> {}.pop('test')
Traceback (most ...
3
votes
2answers
405 views
sqlite / python - named parameters without enclosing quotes?
When using prepared statements with named parameters in SQLite (specifically with the python sqlite3 module http://docs.python.org/library/sqlite3.html ) is there anyway to include string values ...
3
votes
6answers
3k views
Python normal arguments vs. keyword arguments
Could someone explain the differences to me? Aren't all arguments "keyword arguments"? They all have names, and can all be assigned by that name instead of the position. Do keyword arguments mean ones ...
2
votes
1answer
206 views
Named parameters with Python C API?
How can I simulate the following Python function using the Python C API?
def foo(bar, baz="something or other"):
print bar, baz
(i.e., so that it is possible to call it via:
>>> ...
1
vote
2answers
282 views
Python Named Argument is Keyword?
So an optional parameter expected in the web POST request of an API I'm using is actually a reserved word in python too. So how do I name the param in my method call:
...
0
votes
3answers
99 views
Named keywords in decorators?
I've been playing around in depth with attempting to write my own version of a memoizing decorator before I go looking at other people's code. It's more of an exercise in fun, honestly. However, in ...