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 steve.dower
Recipients andrewclegg, barry, ncoghlan, steve.dower
Date 2017-10-11.15:23:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507735419.23.0.213398074469.issue31756@psf.upfronthosting.co.za>
In-reply-to
Content
Really, this is just an alias for universal_newlines in Popen.__init__. So we add the parameter and:

+    if text:
+        universal_newlines = True
     self.universal_newlines = universal_newlines

And 99% of the change is making it clear in the docs why we have two arguments with the same meaning.
History
Date User Action Args
2017-10-11 15:23:39steve.dowersetrecipients: + steve.dower, barry, ncoghlan, andrewclegg
2017-10-11 15:23:39steve.dowersetmessageid: <1507735419.23.0.213398074469.issue31756@psf.upfronthosting.co.za>
2017-10-11 15:23:39steve.dowerlinkissue31756 messages
2017-10-11 15:23:39steve.dowercreate