diff options
author | Guido van Rossum <guido@python.org> | 2005-07-26 23:57:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2005-07-26 23:57:46 (GMT) |
commit | 49a4b68b8b5dde8773247c4a2c8677a9455d8558 (patch) | |
tree | 014c1e3cb7c2961229939c63aab8a96adaa75e92 /Misc | |
parent | 8321b42f38e7456b88e7b08e8b2d8c2dfb041093 (diff) | |
download | cpython-49a4b68b8b5dde8773247c4a2c8677a9455d8558.zip cpython-49a4b68b8b5dde8773247c4a2c8677a9455d8558.tar.gz cpython-49a4b68b8b5dde8773247c4a2c8677a9455d8558.tar.bz2 |
Fix a problem in Tkinter introduced by SF patch #869468 (checked in as
1.179): delete bogus __hasattr__ and __delattr__ methods on class Tk
that were breaking Tkdnd.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- Fix a problem in Tkinter introduced by SF patch #869468: delete bogus + __hasattr__ and __delattr__ methods on class Tk that were breaking + Tkdnd. + - SF bug #1238681: freed pointer is used in longobject.c:long_pow(). - SF bug #1229429: PyObject_CallMethod failed to decrement some |