[pypy-commit] pypy py3k-fix-strategies: remove extra double quote

pjenvey noreply at buildbot.pypy.org
Thu Apr 24 01:42:58 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k-fix-strategies
Changeset: r70904:790fb4852883
Date: 2014-04-23 16:41 -0700
http://bitbucket.org/pypy/pypy/changeset/790fb4852883/

Log:	remove extra double quote

diff --git a/pypy/module/_posixsubprocess/interp_subprocess.py b/pypy/module/_posixsubprocess/interp_subprocess.py
--- a/pypy/module/_posixsubprocess/interp_subprocess.py
+++ b/pypy/module/_posixsubprocess/interp_subprocess.py
@@ -219,7 +219,8 @@
 
 
 def cloexec_pipe(space):
-    """"cloexec_pipe() -> (read_end, write_end)
+    """cloexec_pipe() -> (read_end, write_end)
+
     Create a pipe whose ends have the cloexec flag set."""
 
     with lltype.scoped_alloc(rffi.CArrayPtr(rffi.INT).TO, 2) as fds:


More information about the pypy-commit mailing list