summaryrefslogtreecommitdiffstats
path: root/Objects/codeobject.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-05 03:33:26 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-05 03:33:26 (GMT)
commitaaa4e9a4380f904c6ae4e7dadd229c48d3adc615 (patch)
tree950dcec5ce602ae71eee274bbc4fe4e775bd8c11 /Objects/codeobject.c
parent477efb394412314d47fdfb3f7c287edb028809c0 (diff)
downloadcpython-aaa4e9a4380f904c6ae4e7dadd229c48d3adc615.zip
cpython-aaa4e9a4380f904c6ae4e7dadd229c48d3adc615.tar.gz
cpython-aaa4e9a4380f904c6ae4e7dadd229c48d3adc615.tar.bz2
Remove arbitrary string length limits
PyUnicode_FromFormat() and PyErr_Format() allocates a buffer of the needed size, it is no more a fixed-buffer of 500 bytes.
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r--Objects/codeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
index e9cae13..bb938ea 100644
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -347,11 +347,11 @@ code_repr(PyCodeObject *co)
lineno = -1;
if (co->co_filename && PyUnicode_Check(co->co_filename)) {
return PyUnicode_FromFormat(
- "<code object %.100U at %p, file \"%.300U\", line %d>",
+ "<code object %U at %p, file \"%U\", line %d>",
co->co_name, co, co->co_filename, lineno);
} else {
return PyUnicode_FromFormat(
- "<code object %.100U at %p, file ???, line %d>",
+ "<code object %U at %p, file ???, line %d>",
co->co_name, co, lineno);
}
}