summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2004-02-12 15:28:27 (GMT)
committerMichael W. Hudson <mwh@python.net>2004-02-12 15:28:27 (GMT)
commitecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e (patch)
tree8f5dc5c69fda4c64aff520d38626f8640fc1dfdc /Misc
parente6ed33a6b394a7ca1b10eb42833a0e2dd89937d1 (diff)
downloadcpython-ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e.zip
cpython-ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e.tar.gz
cpython-ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e.tar.bz2
This is my patch #876198 plus a NEWS entry and a header frob.
Remove the ability to use (from C) arbitrary objects supporting the read buffer interface as the co_code member of code objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 45068ad..d9778a3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.4 alpha 1?
Core and builtins
-----------------
+- Support for arbitrary objects supporting the read-only buffer
+ interface as the co_code field of code objects (something that was
+ only possible to create from C code) has been removed.
+
- Made omitted callback and None equivalent for weakref.ref() and
weakref.proxy(); the None case wasn't handled correctly in all
cases.