[<Publication: Highlights for Children>, <Publication: The Python Journal>]
<QuerySet [<Publication: Highlights for Children>, <Publication: The Python Journal>]>
>>> Article.objects.all()
>>> Article.objects.all()
[<Article: Django lets you build Web apps easily>, <Article: NASA finds intelligent life on Earth>, <Article: NASA uses Python>, <Article: Oxygen-free diet works wonders>]
<QuerySet [<Article: Django lets you build Web apps easily>, <Article: NASA finds intelligent life on Earth>, <Article: NASA uses Python>, <Article: Oxygen-free diet works wonders>]>
>>> a2.publications.all()
>>> a2.publications.all()
[<Publication: The Python Journal>]
<QuerySet [<Publication: The Python Journal>]>
Bulk delete some articles - references to deleted objects should go::
Bulk delete some articles - references to deleted objects should go::