<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/dbus-python.git/dbus_bindings/abstract.c, branch dbus-python-1.2.18</title>
<subtitle>gitlab.freedesktop.org: dbus/dbus-python.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/'/>
<entry>
<title>abstract: Stringify float subclasses using float's repr</title>
<updated>2019-11-21T09:46:43+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2019-11-21T09:37:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/commit/?id=4dd9506dcca181b8b44963fbdccb1e3db8ea7938'/>
<id>4dd9506dcca181b8b44963fbdccb1e3db8ea7938</id>
<content type='text'>
Python 3.8 removes the tp_str for various built-in types, so we would
print Double values as their repr (for example dbus.Double(0.5)), which
is a regression. Print them as 0.5 instead.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.8 removes the tp_str for various built-in types, so we would
print Double values as their repr (for example dbus.Double(0.5)), which
is a regression. Print them as 0.5 instead.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>abstract: Stringify long subclasses using long's repr</title>
<updated>2019-11-21T09:46:04+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2019-11-21T09:45:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/commit/?id=1537eef58ed5b0b79f97407db8387f1c1ed63887'/>
<id>1537eef58ed5b0b79f97407db8387f1c1ed63887</id>
<content type='text'>
Python 3.8 removes the tp_str for various built-in types, so we would
print long-derived values as their repr (for example dbus.Int64(42)),
which is a regression. Print them as 42 instead.

Co-authored-by: matclab &lt;mathieu@clabaut.net&gt;
Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
Fixes: https://gitlab.freedesktop.org/dbus/dbus-python/issues/31
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.8 removes the tp_str for various built-in types, so we would
print long-derived values as their repr (for example dbus.Int64(42)),
which is a regression. Print them as 42 instead.

Co-authored-by: matclab &lt;mathieu@clabaut.net&gt;
Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
Fixes: https://gitlab.freedesktop.org/dbus/dbus-python/issues/31
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't set deprecated tp_print to NULL on Python 3</title>
<updated>2019-07-15T14:51:05+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2019-07-15T13:11:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/commit/?id=ab408a3061c7aeaf9320968bd17b3ec812c1f810'/>
<id>ab408a3061c7aeaf9320968bd17b3ec812c1f810</id>
<content type='text'>
This has apparently never actually done anything in the Python 3
series.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This has apparently never actually done anything in the Python 3
series.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add clearer licensing information in SPDX format</title>
<updated>2019-07-15T14:51:05+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2019-07-15T12:08:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/commit/?id=28734ae1661ea029fa2ed06fab6a4d6cf6ade098'/>
<id>28734ae1661ea029fa2ed06fab6a4d6cf6ade098</id>
<content type='text'>
Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename source directories for C code to silence an ImportWarning</title>
<updated>2017-11-05T13:56:09+00:00</updated>
<author>
<name>Simon McVittie</name>
<email>smcv@collabora.com</email>
</author>
<published>2017-11-05T13:08:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/dbus-python.git/commit/?id=71a613348477336df175a45dd46f035def495115'/>
<id>71a613348477336df175a45dd46f035def495115</id>
<content type='text'>
Python warns that it is not importing these directories because they
contain no __init__.py.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python warns that it is not importing these directories because they
contain no __init__.py.

Signed-off-by: Simon McVittie &lt;smcv@collabora.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
