Commit c982fb16 authored by Stefan Krah's avatar Stefan Krah

Merged revisions 82879 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82879 | stefan.krah | 2010-07-14 12:16:11 +0200 (Wed, 14 Jul 2010) | 3 lines

  High byte is the exit status.
........
parent baad2244
...@@ -540,7 +540,7 @@ Return code handling translates as follows:: ...@@ -540,7 +540,7 @@ Return code handling translates as follows::
pipe = os.popen(cmd, 'w') pipe = os.popen(cmd, 'w')
... ...
rc = pipe.close() rc = pipe.close()
if rc != None and rc % 256: if rc is not None and rc >> 8:
print("There were some errors") print("There were some errors")
==> ==>
process = Popen(cmd, 'w', stdin=PIPE) process = Popen(cmd, 'w', stdin=PIPE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment