| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 1.1.0dbus-python-1.1.0 | Simon McVittie | 2012-05-09 | 3 | -2/+38 |
| | | |||||
| * | Make AM_CHECK_PYTHON_HEADERS compatible with Python 3 in the absence of ↵ | Simon McVittie | 2012-05-02 | 1 | -2/+2 |
| | | | | | python3-config | ||||
| * | Deprecate dbus.gobject_service and make it vaguely compatible with 1.0 | Simon McVittie | 2012-05-02 | 1 | -1/+15 |
| | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 | ||||
| * | Reinstate the old dbus.gobject_service, but only for Python 2 | Simon McVittie | 2012-05-02 | 3 | -0/+82 |
| | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 | ||||
| * | Rename gobject_service (PyGI version) to gi_service | Simon McVittie | 2012-05-02 | 3 | -12/+12 |
| | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904 | ||||
| * | Fix ref leak in dbus_py_variant_level_set | Simon McVittie | 2012-03-12 | 1 | -0/+2 |
| | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=47108 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> | ||||
| * | Put sockets for the regression tests in /tmp, not ${builddir} | Simon McVittie | 2012-02-29 | 1 | -1/+1 |
| | | | | | | | | | | Some automated build systems (naming no Portage) have really long build directories, which can cause dbus-python to hit the length limit for Unix sockets' names. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46747 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> | ||||
| * | Use DBusBasicValue instead of reinventing it, if dbus is new enough | Simon McVittie | 2012-02-24 | 5 | -66/+104 |
| | | | | | | If we don't find it, continue to reinvent it, but move the reinvention to an internal header so it's at least the same in both files that want it. | ||||
| * | Fix _maintainer-update-htmldocs for out-of-tree builds | Simon McVittie | 2012-02-01 | 1 | -1/+1 |
| | | |||||
| * | Remove TODO, which is now empty - use bugzilla instead | Simon McVittie | 2012-02-01 | 2 | -1/+1 |
| | | |||||
| * | back to unreleased | Simon McVittie | 2012-01-24 | 1 | -1/+1 |
| | | |||||
| * | retroactively add release date | Simon McVittie | 2012-01-24 | 1 | -1/+1 |
| | | |||||
| * | Install _compat.pydbus-python-1.0.0 | Barry Warsaw | 2012-01-24 | 1 | -0/+1 |
| | | |||||
| * | Generate ChangeLog correctly when out-of-tree | Simon McVittie | 2012-01-24 | 1 | -2/+2 |
| | | |||||
| * | Let's call this 1.0 | Simon McVittie | 2012-01-24 | 2 | -5/+7 |
| | | |||||
| * | Remove duplicate -Werror machinery | Simon McVittie | 2012-01-24 | 1 | -8/+0 |
| | | |||||
| * | Move PY3PORT into doc, use the same extension as other rst, and render it | Simon McVittie | 2012-01-24 | 4 | -5/+16 |
| | | |||||
| * | Describe problems, alternatives | Simon McVittie | 2012-01-24 | 1 | -0/+24 |
| | | |||||
| * | Deprecate dbus.glib (use dbus.mainloop.glib or dbus.mainloop.qt4) | Simon McVittie | 2012-01-24 | 1 | -0/+10 |
| | | |||||
| * | Add INTORLONG_CHECK macro so we don't have to conditionalize PyInt_Check | Simon McVittie | 2012-01-11 | 5 | -21/+11 |
| | | |||||
| * | Use native 'int' (whatever that means) for variant_level etc. | Simon McVittie | 2012-01-11 | 8 | -16/+17 |
| | | | | | | This reverts the Python 2 API to be in terms of PyInt, leaving the Python 3 API in terms of PyLong (which is called 'int' in Python code). | ||||
| * | update NEWS, PY3PORT.rst | Simon McVittie | 2012-01-11 | 2 | -8/+21 |
| | | |||||
| * | Test behaviour of various Message methods | Simon McVittie | 2012-01-11 | 1 | -0/+54 |
| | | |||||
| * | Do not allow Byte(unicode(x)) (i.e. Byte(str(x)) in Python 3) | Simon McVittie | 2012-01-11 | 4 | -36/+46 |
| | | | | | | Unicode strings aren't bytestrings, so there's no obvious meaning for the byte value of a Unicode string of length 1. | ||||
| * | Use better names for the superclasses of Byte and ByteArray | Simon McVittie | 2012-01-11 | 1 | -9/+9 |
| | | | | | | | | | Strictly speaking, DBUS_FOO is libdbus' namespace, not ours. Use DBUS_PY_FOO. DBUS_BYTES_BASE was misleading: it's the base class for a single byte, so call it DBUS_PY_BYTE_BASE. | ||||
| * | Consistently use the str type for identifier-like (ASCII) strings | Simon McVittie | 2012-01-11 | 5 | -20/+12 |
| | | | | | | | | | | | | | | | | | | Porting to Python 3 left these methods returning unicode, which is arguably an API break in Python 2: * Message.get_member * Message.get_path_decomposed (array of unicode) * Message.get_sender * Message.get_destination * Message.get_interface * Message.get_error_name * Server.get_address * Server.get_id Instead, make them return whatever the natural str type is (bytes in Python 2, unicode in Python 3). | ||||
| * | DBusPythonString base class: use "native str" as base class instead of ↵ | Simon McVittie | 2012-01-11 | 2 | -11/+7 |
| | | | | | reinventing it | ||||
| * | SignalMessage.__repr__: include the destination and abbreviate "interface" ↵ | Simon McVittie | 2012-01-11 | 1 | -2/+5 |
| | | | | | | | more conventionally Yes, signals can have a destination. The default is to broadcast. | ||||
| * | Quash a few more deprecations. | Barry Warsaw | 2011-12-17 | 2 | -6/+6 |
| | | |||||
| * | More Python 3 porting, this time primarily to get test-client.py working. | Barry Warsaw | 2011-12-16 | 5 | -157/+214 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes include: - DBusException.get_dbus_message(): In Python 3, the str of the exception will already be a unicode, so don't try to decode it unless it's a bytes object (a.k.a. 8-bit str in Python 2). - gobject_service.py: Switch to pygi and rewrite the metaclass instantiation code to be portable between Python 2 and Python 3. - run-test.sh: echo a few more useful environment variables - test-client.py: - Globally replace deprecated assertEquals with assertEqual - Globally replace deprecated assert_ with assertTrue - Use bytes objects for both 'ay' signatured methods on the server - AcceptUnicodeString will return a native unicode, i.e. a str in Python 3 and a unicode in Python 2. Python 3 has no `unicode` built-in. - Reformat some long lines for debugging. - test-service.py: - Open the log file in 'a' mode for easier tailing. - AcceptUnicodeString will return a native unicode, i.e. a str in Python 3 and a unicode in Python 2. Python 3 has no `unicode` built-in. - reformat some long lines for debugging. - Put module-scope code into a main() function and add a bunch of logger output for better debugging. `session_bus` must still be global though. Wrap main() in a bit try/except to log all top-level exceptions. | ||||
| * | Re-enable the other tests, even though these still fail for me (b.f.o #43303). | Barry Warsaw | 2011-12-16 | 2 | -9/+9 |
| | | | | | Fix another except syntax problem. | ||||
| * | Re-enable previously disabled test. | Barry Warsaw | 2011-12-15 | 1 | -1/+2 |
| | | |||||
| * | Fix the match rule semantics so that a match rule of "arg0='/'" does not match | Barry Warsaw | 2011-12-15 | 2 | -9/+28 |
| | | | | | object paths in Python3, as per Simon's review comments. | ||||
| * | Consistency; clean-up. | Barry Warsaw | 2011-12-15 | 2 | -8/+8 |
| | | |||||
| * | - Added back the missing PY3PORT.rst file, with updates. | Barry Warsaw | 2011-12-15 | 6 | -29/+249 |
| | | | | | | | | - Disallow appending unicode objects with 'y' (bytes) signatures. This now requires either a bytes object or an integer. Update the tests to reflect - this change. - Fix broken __all__ in Python 3. | ||||
| * | This is the big one; it adds Python 3 support. | Barry Warsaw | 2011-12-15 | 42 | -462/+1333 |
| | | |||||
| * | First round of PyInt -> PyLong changes. These are only compatible with Python | Barry Warsaw | 2011-12-14 | 14 | -76/+166 |
| | | | | | | | | 2, since there are still some unconditional PyInt calls, which are not valid in Python 3. However, it lays the framework for conditionalizing on Python 3 and using only PyLong in that case. Where it doesn't matter, PyLong is used unconditionally. | ||||
| * | Add error checking to dbus_py_variant_level_get() and call sites. | Barry Warsaw | 2011-12-14 | 3 | -3/+27 |
| | | |||||
| * | In preparation for Python 3 support, use the Python 2 PyBytes aliases for the | Barry Warsaw | 2011-12-14 | 12 | -115/+129 |
| | | | | | | PyString API. This makes the code compilable in Python 2.x (x >= 6) and Python 3. | ||||
| * | In preparation for Python 3 support, all reprs now return unicodes, which is | Barry Warsaw | 2011-12-14 | 5 | -67/+92 |
| | | | | | | legal in Python 2 also. Use fancy REPR macro and the %V format code for cross-Python compatibility. | ||||
| * | Modernize multiline imports in preparation for Python 3 support. | Barry Warsaw | 2011-12-13 | 8 | -74/+57 |
| | | |||||
| * | Modernize `raise` syntax in preparation of Python 3 support. | Barry Warsaw | 2011-12-13 | 1 | -4/+4 |
| | | |||||
| * | Import threading instead of thread. The latter is gone in Python 3. | Barry Warsaw | 2011-12-13 | 3 | -15/+4 |
| | | |||||
| * | Fix an inconsequential typo. | Barry Warsaw | 2011-12-13 | 1 | -1/+1 |
| | | |||||
| * | For pendantic correctness, and future Python 3 compatibility, explicitly | Barry Warsaw | 2011-12-13 | 2 | -0/+2 |
| | | | | | initialize the weaklist slots. | ||||
| * | Don't leak the fast_seq object. | Barry Warsaw | 2011-12-13 | 1 | -1/+4 |
| | | |||||
| * | - Add a few missing Py_TYPE() changes for Python 3 compatibility. | Barry Warsaw | 2011-12-13 | 3 | -6/+6 |
| | | | | | - De-tabbify a few instances that "make check" complains about. | ||||
| * | Additional PyObject_HEAD_INIT -> PyVarObject_HEAD_INIT changes in preparation | Barry Warsaw | 2011-12-13 | 6 | -26/+13 |
| | | | | | for Python 3 support. | ||||
| * | Fix rst2html build failure in non-unicode locales | Alexandre Rostovtsev | 2011-12-13 | 2 | -0/+3 |
| | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=43735 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> | ||||
| * | Update NEWS | Simon McVittie | 2011-12-13 | 1 | -0/+9 |
| | | |||||
