diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-02-25 01:45:37 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-02-25 01:45:37 +0000 |
commit | 0031ff3f1c89859b73ac8360c3f955da48c5b8ff (patch) | |
tree | 62e41a944f1ebf66e5aa2356efe6617663b73393 /Python/peephole.c | |
parent | 3376d64d6243696e62a670a9c8127beee3ac464e (diff) | |
download | cpython-git-0031ff3f1c89859b73ac8360c3f955da48c5b8ff.tar.gz |
Fix indentation
Diffstat (limited to 'Python/peephole.c')
-rw-r--r-- | Python/peephole.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/peephole.c b/Python/peephole.c index 286ac29b39..430f93938a 100644 --- a/Python/peephole.c +++ b/Python/peephole.c @@ -317,7 +317,7 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names, if (codestr == NULL) goto exitUnchanged; codestr = (unsigned char *)memcpy(codestr, - PyString_AS_STRING(code), codelen); + PyString_AS_STRING(code), codelen); /* Verify that RETURN_VALUE terminates the codestring. This allows the various transformation patterns to look ahead several |