Index: Python/frozenmain.c =================================================================== --- Python/frozenmain.c (révision 66703) +++ Python/frozenmain.c (copie de travail) @@ -52,7 +52,7 @@ #endif size_t count; if (argsize == (size_t)-1) { - fprintf(stderr, "Could not convert argument %d to string", i); + fprintf(stderr, "Could not convert argument %d to string\n", i); return 1; } argv_copy[i] = PyMem_Malloc((argsize+1)*sizeof(wchar_t)); @@ -63,7 +63,7 @@ } count = mbstowcs(argv_copy[i], argv[i], argsize+1); if (count == (size_t)-1) { - fprintf(stderr, "Could not convert argument %d to string", i); + fprintf(stderr, "Could not convert YY argument %d to string\n", i); return 1; } } Index: Modules/python.c =================================================================== --- Modules/python.c (révision 66703) +++ Modules/python.c (copie de travail) @@ -51,7 +51,7 @@ #endif size_t count; if (argsize == (size_t)-1) { - fprintf(stderr, "Could not convert argument %d to string", i); + fprintf(stderr, "Could not convert argument %d to string\n", i); return 1; } argv_copy[i] = PyMem_Malloc((argsize+1)*sizeof(wchar_t)); @@ -62,7 +62,7 @@ } count = mbstowcs(argv_copy[i], argv[i], argsize+1); if (count == (size_t)-1) { - fprintf(stderr, "Could not convert argument %d to string", i); + fprintf(stderr, "Could not convert argument %d to string\n", i); return 1; } }