summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-08-15 14:59:02 +0000
committerMichael W. Hudson <mwh@python.net>2002-08-15 14:59:02 +0000
commit4096d063c80d92dcdc5a26a112461adb9a7b75b4 (patch)
tree357315bffb45c84d563c56d669e01a3c2cd1135c /Misc
parent3516620e327fabeb7bfddd2b102d7d89bca7c9b6 (diff)
downloadcpython-4096d063c80d92dcdc5a26a112461adb9a7b75b4.tar.gz
This is my patch
[ 587993 ] SET_LINENO killer Remove SET_LINENO. Tracing is now supported by inspecting co_lnotab. Many sundry changes to document and adapt to this change.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5abfb42ee3..2c9d83f40d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,11 @@ Type/class unification and new-style classes
Core and builtins
+- SET_LINENO is gone. co_lnotab is now consulted to determine when to
+ call the trace function. C code that accessed f_lineno should call
+ PyCode_Addr2Line instead (f_lineno is still there, but not kept up
+ to date).
+
- There's a new warning category, FutureWarning. This is used to warn
about a number of situations where the value or sign of an integer
result will change in Python 2.4 as a result of PEP 237 (integer