diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:55:42 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:55:42 +0000 |
commit | 64f336eac41b68183720dc6177ffcaa6bfc0da1f (patch) | |
tree | f0e4ba99edad8c60a6962db16cb4c4e3187de186 /Python/pythonrun.c | |
parent | a1e89fd91a3c452b2e9d844e77cc7656803f1bed (diff) | |
download | cpython-64f336eac41b68183720dc6177ffcaa6bfc0da1f.tar.gz |
Reconst parameters that lost their const in the AST merge.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index bbe935297d..a98c85ac10 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -638,7 +638,7 @@ initsite(void) /* Parse input from a file and execute it */ int -PyRun_AnyFileExFlags(FILE *fp, char *filename, int closeit, +PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit, PyCompilerFlags *flags) { if (filename == NULL) |