summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-01 16:55:42 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-03-01 16:55:42 (GMT)
commit056a69cba6c6249b12ceffb7f00c324f5a8f16d4 (patch)
tree5d5a5b96fc65032716e6713b9c706bd31b281b38 /Python
parentc9066cafbae56842f19217efcc712519763b52ff (diff)
downloadcpython-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.c2
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)