Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a function in Django that accepts an argument in the form of a list [var1, var2], but Django is throwing an exception. This works in interactive-python.

stuff = ["Phone", "Plant", "Dog"]
def doesStuff(items):
    for i in items:
         print i 
doesStuff(stuff)
Phone
Plant
Dog

But not in Django.. I get "takes exactly 2 arguments (3 given)", it is using the list as multiple arguments, when it is only one. Any ideas?

Thanks!

share|improve this question
3  
Please include the stack backtrace information. You didn't even tell us what the exception was... – steveha Apr 18 '12 at 2:12
4  
Post the actual code that throws the error, as well as the actual error it throws. – agf Apr 18 '12 at 2:12
1  
Where is this function located? Where is it getting called? Is this in a view function? A class method? – CppLearner Apr 18 '12 at 2:20
2  
Define "in Django". – Larry Lustig Apr 18 '12 at 2:48

closed as not a real question by Karl Knechtel, Timmy O'Mahony, Andrew Walker, Tim Post Apr 20 '12 at 12:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Post the exception info.

My only guess so far is that you have stdin/out redirected to a WSGI handler and print doesn't work. Try using logging.info() instead of print.

share|improve this answer
It's an argument exception, I meant to add that above. It says I'm entering more arguments than the function accepts. I am using WSGI btw, but I'm not trying to print the results. – Addiction2Code Apr 18 '12 at 2:16
show some code, i'm not psychic. – dragonx Apr 18 '12 at 2:20
Next time please double check people's comments. Furthermore, use traceback.print_stack(). – CppLearner Apr 18 '12 at 2:28
When writing models in Django you need to define self as the first argument in your model. Hence why it error'd reporting the improper amount of arguments have been given. – Addiction2Code Apr 18 '12 at 2:28
and that self parameter is not used in model because of Django. You add self because you were dealing with a class method. class method always begin with self as its first parameter. An analogy would be the this parameter in C++ (although in C++ this is implicit`. – CppLearner Apr 18 '12 at 2:29

You want list it in template ?
use this

{% for i in list_name %}
{% i.xxx%}

{% endfor %}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.