| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix invalid escape sequence warnings | Jason Yundt | 2021-09-15 | 1 | -1/+1 |
| * | Remove support for Python 2 | Simon McVittie | 2021-09-15 | 1 | -2/+0 |
| * | Add clearer licensing information in SPDX format | Simon McVittie | 2019-07-15 | 1 | -0/+2 |
| * | This is the big one; it adds Python 3 support. | Barry Warsaw | 2011-12-15 | 1 | -5/+7 |
| * | Modernize multiline imports in preparation for Python 3 support. | Barry Warsaw | 2011-12-13 | 1 | -4/+6 |
| * | Use Python 3 syntax to catch exceptions | Barry Warsaw | 2011-12-13 | 1 | -1/+1 |
| * | _ProxyMethod: allow an explicit signature to be given to method calls | Simon McVittie | 2011-05-18 | 1 | -13/+18 |
| * | ProxyObject: clear _pending_introspect_queue after execution | Scott Tsai | 2011-05-17 | 1 | -0/+1 |
| * | When user sets reply_handler but not error_handler raise MissingReplyHandlerE... | Simon McVittie | 2007-12-10 | 1 | -2/+2 |
| * | Use MIT/X11 license as per permission given on the dbus mailing list. | Simon McVittie | 2007-10-09 | 1 | -15/+19 |
| * | dbus.proxies: If making a call with ignore_reply=True, don't block for intros... | Simon McVittie | 2007-06-29 | 1 | -1/+2 |
| * | Improve API documentation markup, particularly adding :Since: annotations | Simon McVittie | 2007-06-19 | 1 | -3/+3 |
| * | dbus.proxies: Log more informatively when introspection fails, and use loggin... | Simon McVittie | 2007-05-17 | 1 | -1/+6 |
| * | Deprecate all arguments called named_service; use bus_name instead | Simon McVittie | 2007-05-03 | 1 | -18/+48 |
| * | Convert _BusDaemonMixin and _MethodCallMixin into base classes BusConnection ... | Simon McVittie | 2007-04-30 | 1 | -18/+3 |
| * | dbus/proxies.py: get INTROSPECTABLE_IFACE from _dbus_bindings | Simon McVittie | 2007-04-30 | 1 | -3/+2 |
| * | Move the client method-call machinery from dbus.proxies to dbus.connection._M... | Simon McVittie | 2007-04-30 | 1 | -96/+65 |
| * | dbus/proxies.py: Give Interface some properties. Vastly simplify __getattr__ ... | Simon McVittie | 2007-04-30 | 1 | -26/+29 |
| * | Move Interface from dbus._dbus to dbus.proxies (it belongs there really). | Simon McVittie | 2007-04-30 | 1 | -0/+72 |
| * | Make ProxyObject a new-style class, since it now has properties | Simon McVittie | 2007-04-27 | 1 | -1/+1 |
| * | Add object_path, bus_name and requested_bus_name properties to ProxyObject. | Simon McVittie | 2007-04-27 | 1 | -2/+41 |
| * | Remove trailing whitespace in Python source | Simon McVittie | 2007-04-24 | 1 | -5/+5 |
| * | * ProxyObject: allow named_service to be None, in preparation for peer-to-peer | Simon McVittie | 2007-03-02 | 1 | -3/+6 |
| * | * Don't let the user call methods on the reserved local path - we'll get | Simon McVittie | 2007-03-02 | 1 | -1/+18 |
| * | dbus, _dbus_bindings, _dbus_glib_bindings: remove accidentally duplicated lin... | Simon McVittie | 2007-01-25 | 1 | -2/+0 |
| * | dbus/proxies.py: Finish implementing deferred methods so they can be async. | Simon McVittie | 2007-01-17 | 1 | -58/+87 |
| * | When running without a main loop, don't make introspection fail. | Simon McVittie | 2007-01-16 | 1 | -1/+1 |
| * | Remove get_object_by_unique_name again, and replace with a better-thought-out... | Simon McVittie | 2007-01-16 | 1 | -5/+29 |
| * | Add special case to serialization: objects with a __dbus_object_path__ attrib... | Simon McVittie | 2007-01-10 | 1 | -6/+6 |
| * | dbus.Interface, dbus.ProxyObject: add get_dbus_method(), which can be used to... | Simon McVittie | 2007-01-09 | 1 | -11/+36 |
| * | Add an Expat-based introspect parser, and use it instead of libxml2. | Simon McVittie | 2006-12-19 | 1 | -1/+1 |
| * | Pass introspection XML around as UTF-8, rather than decoding it to Unicode | Simon McVittie | 2006-12-19 | 1 | -1/+1 |
| * | Respect utf8_strings, byte_arrays options when calling methods asynchronously. | Simon McVittie | 2006-12-19 | 1 | -4/+5 |
| * | dbus/_dbus.py, dbus/proxies.py: Add keyword arguments interface_keyword, memb... | Simon McVittie | 2006-12-07 | 1 | -0/+14 |
| * | dbus/proxies.py: trivial change to process_introspection_data() invocation: i... | Simon McVittie | 2006-12-05 | 1 | -2/+2 |
| * | dbus/proxies.py: Ignore unused result from send_message. Pass on SignalMatch ... | Simon McVittie | 2006-12-04 | 1 | -1/+2 |
| * | dbus.proxies: Alter calls to methods which have become public | Simon McVittie | 2006-11-30 | 1 | -9/+7 |
| * | Document the absence of dbus.mainloop.MainLoop in this release. | Simon McVittie | 2006-11-30 | 1 | -0/+3 |
| * | Add improved main-loop integration. | Simon McVittie | 2006-11-22 | 1 | -9/+0 |
| * | dbus._dbus, dbus.proxies: Raise RuntimeError when user tries to do async call... | Simon McVittie | 2006-11-15 | 1 | -0/+9 |
| * | dbus._dbus, dbus.matchrules, dbus.proxies: Support utf8_strings and byte_arra... | Simon McVittie | 2006-11-15 | 1 | -2/+16 |
| * | - dbus.service.Object, dbus.decorators.method: Allow utf8_strings and | Simon McVittie | 2006-11-14 | 1 | -4/+9 |
| * | Seth was a Red Hat employee when contributing to dbus-python: alter copyright... | Simon McVittie | 2006-10-05 | 1 | -2/+1 |
| * | dbus/_dbus.py, dbus/proxies.py: Amend docstrings for signal receiving | Simon McVittie | 2006-09-28 | 1 | -4/+9 |
| * | Add copyright, AFL2.1, GPL2 notices, which might even be correct... | Simon McVittie | 2006-09-27 | 1 | -0/+24 |
| * | Throughout dbus-python: Use the C implementation. | Simon McVittie | 2006-09-26 | 1 | -32/+58 |
| * | dbus/proxies.py: Set __docformat__ to 'restructuredtext' for epydoc | Simon McVittie | 2006-09-08 | 1 | -0/+3 |
| * | dbus._dbus, _dbus_bindings, dbus.proxies: Add docstrings | Simon McVittie | 2006-09-01 | 1 | -0/+39 |
| * | Rename dbus_bindings (sometimes a.k.a. dbus.dbus_bindings) to _dbus_bindings. | Simon McVittie | 2006-08-31 | 1 | -4/+4 |
| * | Move python/ to dbus/, the name of the module. | Robert McQueen | 2006-07-12 | 1 | -0/+222 |