diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:55:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:55:42 (GMT) |
commit | 056a69cba6c6249b12ceffb7f00c324f5a8f16d4 (patch) | |
tree | 5d5a5b96fc65032716e6713b9c706bd31b281b38 /Python | |
parent | c9066cafbae56842f19217efcc712519763b52ff (diff) | |
download | cpython-056a69cba6c6249b12ceffb7f00c324f5a8f16d4.zip cpython-056a69cba6c6249b12ceffb7f00c324f5a8f16d4.tar.gz cpython-056a69cba6c6249b12ceffb7f00c324f5a8f16d4.tar.bz2 |
Reconst parameters that lost their const in the AST merge.
Diffstat (limited to 'Python')
-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 bbe9352..a98c85a 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) |