Possible Duplicate:
What does *args and **kwargs mean?
Understanding kwargs in Python
I've found some strange syntax in Django framework like:
class Blog(models.Model):
    name = models.CharField(max_length=100)
    tagline = models.TextField()
    def save(self, *args, **kwargs):
        do_something()
        super(Blog, self).save(*args, **kwargs) # Call the "real" save() method.
        do_something_else()
My question is: what does the star means in the name of the argument. Is there anything with pointer in C? Thanks
 
     
     
    