[Python-checkins] r63849 - python/trunk/Python/pythonrun.c
martin.v.loewis
python-checkins at python.org
Sun Jun 1 10:19:02 CEST 2008
Author: martin.v.loewis
Date: Sun Jun 1 10:19:02 2008
New Revision: 63849
Log:
Typo: encoding -> codeset.
Modified:
python/trunk/Python/pythonrun.c
Modified: python/trunk/Python/pythonrun.c
==============================================================================
--- python/trunk/Python/pythonrun.c (original)
+++ python/trunk/Python/pythonrun.c Sun Jun 1 10:19:02 2008
@@ -301,7 +301,7 @@
#ifdef MS_WINDOWS
if (!overridden) {
icodeset = ibuf;
- encoding = buf;
+ codeset = buf;
sprintf(ibuf, "cp%d", GetConsoleCP());
sprintf(buf, "cp%d", GetConsoleOutputCP());
}
More information about the Python-checkins
mailing list