[Python-checkins] cpython: Fix a typo in PC/_subprocess.c

victor.stinner python-checkins at python.org
Mon Nov 21 02:14:57 CET 2011


http://hg.python.org/cpython/rev/da608aa6f59e
changeset:   73653:da608aa6f59e
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Mon Nov 21 02:17:08 2011 +0100
summary:
  Fix a typo in PC/_subprocess.c

files:
  PC/_subprocess.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/PC/_subprocess.c b/PC/_subprocess.c
--- a/PC/_subprocess.c
+++ b/PC/_subprocess.c
@@ -463,7 +463,7 @@
     }
 
     if (environment) {
-        wenvironment = PyUnicode_AsUnicode(environment)
+        wenvironment = PyUnicode_AsUnicode(environment);
         if (wenvironment == NULL)
         {
             Py_XDECREF(environment);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list