Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dcbbd9e

Browse files
author
Victor Stinner
committed
Fix a typo in PC/_subprocess.c
1 parent ea90e0f commit dcbbd9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PC/_subprocess.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ sp_CreateProcess(PyObject* self, PyObject* args)
463463
}
464464

465465
if (environment) {
466-
wenvironment = PyUnicode_AsUnicode(environment)
466+
wenvironment = PyUnicode_AsUnicode(environment);
467467
if (wenvironment == NULL)
468468
{
469469
Py_XDECREF(environment);

0 commit comments

Comments
 (0)