Tagged Questions
39
votes
12answers
18k views
What is a “callable” in Python?
Now that it's clear what a metaclass is, there is an associated concept that I use all the time without knowing what it really means.
I suppose everybody made once a mistake with parenthesis, ...
2
votes
3answers
129 views
returning a user defined function name when using a decorator with a callable object
Consider the following code fragment.
def print_timing(func):
import time
def wrapper(*args, **kwargs):
t1 = time.time()
res = func(*args, **kwargs)
t2 = time.time()
...
2
votes
3answers
159 views
Built-in function to get value of object if callable?
class Thing():
xyz = "I'm a string"
class Truc():
def xyz(self):
return "I'm a function"
def valueOrCalledValue(input):
if callable(input):
return input()
else:
...
2
votes
2answers
171 views
modifying a python callable so it calls before() , actual function then after()
I am not sure if this is the best way to have before and after functions be called around a function f1().
class ba(object):
def __init__(self, call, before, after):
self.call = call
...
2
votes
1answer
303 views
python function parameter evaluation model
I was looking at an article on Peter Norvig's website, where he's trying to answer the following question (this is not my question, btw)
"Can I do the equivalent of (test ? result : alternative) in ...
1
vote
5answers
79 views
Populate list or tuple from callable or lambda in python
This is a problem I've come across a lot lately. Google doesn't seem to have an answer so I bring it to the good people of stack overflow.
I am looking for a simple way to populate a list with the ...
1
vote
2answers
119 views
Invoke python callable with an arg list
Simple question: How can I pass an arbitrary list of args to a python callable?
Let's say I want to invoke a function from the command line, like so:
my_script.py foo hello world
with the ...
0
votes
1answer
46 views
What is the exact requirement for defining a python tp_call function?
I am binding C++ classes to Python and have come to an interesting solution to a previous problem, unfortunately this has lead to another question that there seems to be no easy answer too.
I am ...
0
votes
0answers
169 views
“List object not callable”
I'm currently writing a Python based tool for Maya. I'm using a line of code which I have used in countless other sections of other tools, and for some reason it refuses to work this time round. I ...
0
votes
5answers
1k views
Python: TypeError: 'list' object is not callable
I am trying to run this code where I have a list of lists. I need to add to inner lists, but I get the error TypeError: 'list' object is not callable.
Can anyone tell me what am I doing wrong here.
...