This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pjenvey
Recipients pjenvey
Date 2009-06-06.22:02:07
SpamBayes Score 9.769311e-05
Marked as misclassified No
Message-id <1244325728.64.0.945262534879.issue6226@psf.upfronthosting.co.za>
In-reply-to
Content
It'd be nice to eventually standardize on the kwarg name used for basic 
file-like args in the stdlib. print, warnings.showwarning and some 
others take a file= argument whereas pprint, getpass.getpass take 
stream=

print and pprint in particular should match -- though they do have a 
different option set, when you're using the same options this 
consistency would ease replacing:

print(obj, file=sys.stderr)
with
pprint(obj, stream=sys.stderr)
History
Date User Action Args
2009-06-06 22:02:08pjenveysetrecipients: + pjenvey
2009-06-06 22:02:08pjenveysetmessageid: <1244325728.64.0.945262534879.issue6226@psf.upfronthosting.co.za>
2009-06-06 22:02:07pjenveylinkissue6226 messages
2009-06-06 22:02:07pjenveycreate