Vladimir Marangozov: This fixes the line number in the string

representation of code objects when optimization is on (python -O). It
was always reported as -1 instead of the real lineno.
This commit is contained in:
Guido van Rossum 2000-04-07 01:21:36 +00:00
parent fa9ef1864f
commit a396a883af
1 changed files with 2 additions and 4 deletions

View File

@ -121,13 +121,11 @@ code_repr(co)
{
char buf[500];
int lineno = -1;
unsigned char *p;
char *filename = "???";
char *name = "???";
_PyCode_GETCODEPTR(co, &p);
if (*p == SET_LINENO)
lineno = (p[1] & 0xff) | ((p[2] & 0xff) << 8);
if (co->co_firstlineno != 0)
lineno = co->co_firstlineno;
if (co->co_filename && PyString_Check(co->co_filename))
filename = PyString_AsString(co->co_filename);
if (co->co_name && PyString_Check(co->co_name))