summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorSimon Feltman <sfeltman@src.gnome.org>2013-07-29 02:23:02 -0700
committerSimon Feltman <sfeltman@src.gnome.org>2013-07-29 02:23:02 -0700
commit2d8f5490cdc078b3e56a92deb9eca71b3fc5ef17 (patch)
tree745549823c89fcd32d7cc7aea43c4ac20b2beecf /NEWS
parentec3de7608ec970f6f272c9d7937344f02c6e9c3d (diff)
downloadpygobject-2d8f5490cdc078b3e56a92deb9eca71b3fc5ef17.tar.gz
release 3.9.53.9.5
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS41
1 files changed, 41 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 6f9ad541..72d671f7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,44 @@
+3.9.3 29-Jul-2013
+ - Ensure exceptions set in closure out argument marshaling are printed
+ (Simon Feltman) (#705064)
+ - Always raise OverflowError for marshaling integers from Python
+ (not ValueError or OverflowError) (Simon Feltman) (#705057)
+ - Cleanup invoke args and kwargs combiner code (Simon Feltman) (#640812)
+ - gtk-demo: Change demo to use Gtk.Application (Simon Feltman) (#698547)
+ - Add callable and descriptor protocols to PyGICallableInfo
+ (Simon Feltman) (#704037)
+ - Unify basic type argument marshaling for methods, closures, and
+ properties (Simon Feltman) (#693405)
+ - Override GValue.set/get_boxed with static C marshaler
+ (Simon Feltman) (#688081, #693405)
+ - Add deprecation warning for marshaling arbitrary objects as pointers
+ (Simon Feltman) (#688081)
+ - Replace usage of __import__ with importlib.import_module
+ (Simon Feltman) (#682320)
+ - Always unref the GiTypeInfo when generating an argument cache
+ (Mike Gorse) (#703973)
+ - Unref interface info when fetching enums or flags
+ (Mike Gorse) (#703960)
+ - Speed up MRO calculation (Daniel Drake) (#703829)
+ - Add GIL safety to pyobject_copy for copying boxed PyObjects
+ (Simon Feltman) (#688081)
+ - Add marshaling of GI_TYPE_TAG_VOID held in a GValue to int
+ (Simon Feltman) (#694233)
+ - GTK overrides: Make connect_signals handle tuple
+ (Cole Robinson) (#693994)
+ - Re-add support for passing GValue's by reference
+ (Simon Feltman) (#701058)
+ - Clear return value of closures to zero when an exception occurs
+ (Simon Feltman) (#702552)
+ - Don't use doctest syntax in docstrings for examples
+ (Martin Pitt) (#701009)
+ - Add support for properties of type GInterface
+ (Garrett Regier) (#703456)
+ - pygtkcompat: Fix for missing methods on Windows
+ (Martin Pitt) (#702787)
+ - gi/pygi-info.c: Avoid C99-style variable declaration
+ (Chun-wei Fan) (#702786)
+
3.9.2 28-May-2013
- examples/option.py: Port to GI and Python 3 (Martin Pitt)
- Fix vfunc info search for classes with multiple inheritance