소스 검색

Fixed #12916 -- Added a missing versionadded marker for the m2m_changed signal. Thanks to timo for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Russell Keith-Magee 15 년 전
부모
커밋
745b89f6e1
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      docs/ref/signals.txt

+ 2 - 0
docs/ref/signals.txt

@@ -176,6 +176,8 @@ m2m_changed
 .. data:: django.db.models.signals.m2m_changed
    :module:
 
+.. versionadded:: 1.2
+
 Sent when a :class:`ManyToManyField` is changed on a model instance.
 Strictly speaking, this is not a model signal since it is sent by the
 :class:`ManyToManyField`, but since it complements the