Tagged Questions
3
votes
3answers
111 views
When do symbols for functions bind in Python? Is forward declaration possible?
Suppose we have a hash table that maps strings to functions. In my example I'll call it COMMANDS. If I place the definition for some function (let's call it cmd_add) after the hash table that maps it ...
5
votes
1answer
566 views
Django models: mutual references between two classes and impossibility to use forward declaration in python
I have defined two models where each one references the other, like so:
class User(models.Model):
# ...
loves = models.ManyToManyField(Article, related_name='loved_by')
class ...
2
votes
3answers
842 views
Python forward-declaration of functions inside classes
I am getting my head around Python for the first time and I am stuck here:
class A:
def __init__(self):
a = foo("baa")
class B(A):
b = foo("boo")
def foo(string):
return string
...
0
votes
2answers
342 views
Foward declaration of classes in Python
The following program can run successfully:
class Simple(object):
def __init__(self, name):
self.name = name
def __add__(self, other):
c = Composite()
...
23
votes
10answers
17k views
Is it possible to forward-declare a function in Python?
I want to sort a list using my own cmp function. For the purpose of this discussion we can use the following example which is equivalent to what I'm trying to do:
print "\n".join([str(bla) for bla ...
3
votes
1answer
435 views
Forward declaration - no admin page in django?
This is probably a db design issue, but I couldn't figure out any better. Among several others, I have these models:
class User(models.Model):
name = models.CharField( max_length=40 )
# some ...