From cb7ce349e26e5c513966ff6ec6002e2f696b81f1 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 27 Mar 1992 15:13:08 +0000 Subject: Add a function to return just the line number of a code object. --- Lib/codehack.py | 9 +++++++++ Lib/lib-old/codehack.py | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/Lib/codehack.py b/Lib/codehack.py index 8a4f611..d00d2bf 100644 --- a/Lib/codehack.py +++ b/Lib/codehack.py @@ -52,3 +52,12 @@ def getcodename(co): def getfuncname(func): return getcodename(func.func_code) + +# A part of the above code to extract just the line number from a code object. + +def getlineno(co): + code = co.co_code + if ord(code[0]) == SET_LINENO: + return ord(code[1]) | ord(code[2]) << 8 + else: + return -1 diff --git a/Lib/lib-old/codehack.py b/Lib/lib-old/codehack.py index 8a4f611..d00d2bf 100644 --- a/Lib/lib-old/codehack.py +++ b/Lib/lib-old/codehack.py @@ -52,3 +52,12 @@ def getcodename(co): def getfuncname(func): return getcodename(func.func_code) + +# A part of the above code to extract just the line number from a code object. + +def getlineno(co): + code = co.co_code + if ord(code[0]) == SET_LINENO: + return ord(code[1]) | ord(code[2]) << 8 + else: + return -1 -- cgit v0.12