~nkarageuzian/mailman/bug-1312884

« back to all changes in this revision

Viewing changes to src/mailman/rest/docs/lists.rst

  • Committer: Barry Warsaw
  • Date: 2014-04-28 15:23:35 UTC
  • Revision ID: barry@list.org-20140428152335-uomli7adnqf3h6dm
Use print functions consistently through, and update all __future__ imports to
reflect this.

Also, mock out sys.stderr on some tests so that their nose2 output is quieter.

A few other minor coding style consistencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
 
211
211
The mailing list does not exist.
212
212
 
213
 
    >>> print list_manager.get('bee@example.com')
 
213
    >>> print(list_manager.get('bee@example.com'))
214
214
    None
215
215
 
216
216
.. Abort the Storm transaction.
228
228
 
229
229
The mailing list does not exist.
230
230
 
231
 
    >>> print list_manager.get('ant@example.com')
 
231
    >>> print(list_manager.get('ant@example.com'))
232
232
    None
233
233
 
234
234