Ticket #6554: fix-quoting.patch

File fix-quoting.patch, 619 bytes (added by Adam Vandenberg, 16 years ago)
  • docs/model-api.txt

     
    952952    ``limit_choices_to``     See the description under ``ForeignKey`` above.
    953953
    954954    ``symmetrical``          Only used in the definition of ManyToManyFields on self.
    955                              Consider the following model:
     955                             Consider the following model::
    956956
    957957                             class Person(models.Model):
    958958                                 friends = models.ManyToManyField("self")
Back to Top