diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-07-27 02:41:03 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-07-27 02:41:03 +0200 |
commit | da2cbb4fc81d12f1ee9150e72ec55fde47388a28 (patch) | |
tree | ff1c074d2a08fa5de34e26b8c581a316336fa06c /Python/frozenmain.c | |
parent | 36577e4e8cf967083dea762407ba9d9d28de5b8a (diff) | |
download | cpython-git-da2cbb4fc81d12f1ee9150e72ec55fde47388a28.tar.gz |
Issue #15893: Remove dead code
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r-- | Python/frozenmain.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c index 98f46ebdb2..8b1f2d4bbe 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -44,11 +44,6 @@ Py_FrozenMain(int argc, char **argv) setbuf(stderr, (char *)NULL); } - if (!argv_copy) { - fprintf(stderr, "out of memory\n"); - return 1; - } - oldloc = setlocale(LC_ALL, NULL); setlocale(LC_ALL, ""); for (i = 0; i < argc; i++) { |