| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove BusImplementation, removing its remaining functionality to Connection. | Simon McVittie | 2007-04-30 | 4 | -95/+76 |
* | Implement o.fd.DBus method wrappers in Python instead of C. | Simon McVittie | 2007-04-30 | 1 | -235/+0 |
* | _dbus_bindings/module.c: Add some useful constants | Simon McVittie | 2007-04-27 | 1 | -0/+17 |
* | Remove trailing whitespace in C source | Simon McVittie | 2007-04-24 | 8 | -13/+13 |
* | Add optional checks for coding style (mainly whitespace at the moment). | Simon McVittie | 2007-04-24 | 1 | -0/+3 |
* | _dbus_bindings/message.c: untabify | Simon McVittie | 2007-04-24 | 1 | -30/+30 |
* | If send_with_reply() returns TRUE but with pending call NULL, cope gracefully. | Simon McVittie | 2007-02-21 | 1 | -0/+7 |
* | Don't examine args for functions declared METH_NOARGS. | Simon McVittie | 2007-02-21 | 1 | -6/+3 |
* | Actually commit the numerous copyright-statement changes. | Simon McVittie | 2007-02-07 | 21 | -152/+152 |
* | Audit tp_dealloc callbacks to make sure they preserve the exception state. | Simon McVittie | 2007-02-07 | 2 | -1/+7 |
* | Fix memory leak where Struct, _LongBase, _StrBase, String leaked their __dict... | Simon McVittie | 2007-02-07 | 5 | -108/+309 |
* | Close a couple of reference leaks in String (there's another somewhere, but I... | Simon McVittie | 2007-02-05 | 1 | -8/+22 |
* | Don't leak memory in Struct repr() | Simon McVittie | 2007-02-05 | 1 | -2/+5 |
* | Don't leak memory in _StringBase and _LongBase repr() | Simon McVittie | 2007-02-05 | 1 | -2/+10 |
* | Switch _IntBase back to using generic alloc/free implementation rather than h... | Simon McVittie | 2007-02-05 | 1 | -1/+2 |
* | Fix a couple of memory leaks - D-Bus signature strings, and decoded Unicode o... | Simon McVittie | 2007-02-05 | 1 | -7/+11 |
* | _dbus_bindings/pending-call.c: Fix memory leak of one Message per method call. | Simon McVittie | 2007-01-31 | 1 | -2/+3 |
* | dbus, _dbus_bindings, _dbus_glib_bindings: remove accidentally duplicated lin... | Simon McVittie | 2007-01-25 | 24 | -48/+0 |
* | Split up Makefile.am between subdirectories | Simon McVittie | 2007-01-22 | 1 | -0/+30 |
* | When running without a main loop, don't make introspection fail. | Simon McVittie | 2007-01-16 | 1 | -7/+17 |
* | conn.c: fix Connection setup in absence of main loop, and error handling | Simon McVittie | 2007-01-16 | 1 | -1/+4 |
* | Switch types from int to Py_ssize_t to be compatible with Python 2.5 on 64-bi... | Simon McVittie | 2007-01-16 | 4 | -7/+20 |
* | bytes.c, string.c: Don't mention get_object_by_unique_name in docstrings, it ... | Simon McVittie | 2007-01-16 | 2 | -2/+2 |
* | Ensure we put the right number of items in a struct or message and add test c... | Simon McVittie | 2007-01-16 | 1 | -19/+36 |
* | Add special case to serialization: objects with a __dbus_object_path__ attrib... | Simon McVittie | 2007-01-10 | 3 | -24/+101 |
* | Validate that the signature on an Array or Dict has the right number of compl... | Simon McVittie | 2007-01-09 | 1 | -4/+54 |
* | When putting a ByteArray into a variant array, serialise it as an array of va... | Simon McVittie | 2007-01-09 | 1 | -1/+25 |
* | Improve documentation of type conversion from D-Bus to Python | Simon McVittie | 2007-01-09 | 1 | -11/+12 |
* | Improve docstrings for String and UTF8String explaining how to get UTF8String... | Simon McVittie | 2007-01-09 | 1 | -0/+26 |
* | Subscripting a ByteArray now gives 1-character strings again (for least aston... | Simon McVittie | 2007-01-09 | 1 | -57/+18 |
* | Don't require a main loop unless async calls, signal connections or exported ... | Simon McVittie | 2007-01-09 | 4 | -9/+38 |
* | Improve various type docstrings | Simon McVittie | 2006-12-21 | 13 | -127/+205 |
* | Fix recommendation given by exception message bringing it into sync with curr... | Simon McVittie | 2006-12-21 | 1 | -1/+1 |
* | Switch to autotools and test with Python 2.5 as well as 2.4. | Simon McVittie | 2006-12-18 | 6 | -23/+51 |
* | bus.c, conn-methods.c, conn.c: Alter format of signatures in docstrings to ke... | Simon McVittie | 2006-12-18 | 3 | -14/+16 |
* | include/dbus_bindings.h: Rename to include/dbus-python.h, improve namespacing. | Simon McVittie | 2006-12-18 | 2 | -3/+3 |
* | _dbus_bindings/module.c: If Python is older than 2.4.2c1, initialize threads. | Simon McVittie | 2006-12-14 | 1 | -0/+10 |
* | message-append.c, message-get-args.c: Turn off debug messages even when debug... | Simon McVittie | 2006-12-13 | 2 | -0/+2 |
* | _dbus_bindings/conn.c: Fix broken weak reference handling, which caused a seg... | Simon McVittie | 2006-12-13 | 1 | -12/+43 |
* | conn-methods.c: Add tracing | Simon McVittie | 2006-12-13 | 1 | -0/+21 |
* | conn-internal.h: Comment weakref list | Simon McVittie | 2006-12-13 | 1 | -0/+1 |
* | bus.c: Add tracing and a couple of missed assertions | Simon McVittie | 2006-12-13 | 1 | -0/+11 |
* | Add TRACE macro and allow debug to be turned off per file | Simon McVittie | 2006-12-13 | 1 | -1/+9 |
* | conn.c: Correct number of varargs to debug message | Simon McVittie | 2006-12-12 | 1 | -1/+1 |
* | conn.c: Use __func__ instead of incorrect __FUNC__ | Simon McVittie | 2006-12-12 | 1 | -4/+4 |
* | _dbus_bindings/bus.c, _dbus_bindings/conn-methods.c, _dbus_bindings/conn.c: A... | Simon McVittie | 2006-12-12 | 3 | -13/+55 |
* | _dbus_bindings/dbus_bindings-internal.h: Add wrapper macro "DBG_WHEREAMI;" | Simon McVittie | 2006-12-12 | 1 | -1/+3 |
* | Add assertion macros and supporting functions | Simon McVittie | 2006-12-12 | 2 | -4/+62 |
* | Whitespace consistency: Don't put a space between function name and parenthes... | Simon McVittie | 2006-12-11 | 4 | -199/+199 |
* | Convert generic glue, main loop integration, message append/get_args, validat... | Simon McVittie | 2006-12-11 | 9 | -266/+321 |