Package: python-xlib / 0.14+20091101-5

Metadata

Package Version Patches format
python-xlib 0.14+20091101-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
fix unix socket in display.patch | (download)

Xlib/support/unix_connect.py | 2 2 + 0 - 0 !
1 file changed, 2 insertions(+)

---
increase receiving buffer.patch | (download)

Xlib/protocol/display.py | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

---
add texinfo dir entry.patch | (download)

doc/src/python-xlib.texi | 7 7 + 0 - 0 !
1 file changed, 7 insertions(+)

---
fix ssh tunnel auth.patch | (download)

Xlib/support/unix_connect.py | 8 8 + 0 - 0 !
1 file changed, 8 insertions(+)

---
fix rhomboid examples.patch | (download)

examples/draw-proto.py | 12 6 + 6 - 0 !
examples/draw.py | 12 6 + 6 - 0 !
2 files changed, 12 insertions(+), 12 deletions(-)

---
python3.patch | (download)

Xlib/XK.py | 2 1 + 1 - 0 !
Xlib/display.py | 69 32 + 37 - 0 !
Xlib/error.py | 7 2 + 5 - 0 !
Xlib/ext/randr.py | 2 1 + 1 - 0 !
Xlib/ext/record.py | 4 2 + 2 - 0 !
Xlib/protocol/display.py | 37 23 + 14 - 0 !
Xlib/protocol/event.py | 2 1 + 1 - 0 !
Xlib/protocol/request.py | 5 2 + 3 - 0 !
Xlib/protocol/rq.py | 259 154 + 105 - 0 !
Xlib/protocol/structs.py | 2 1 + 1 - 0 !
Xlib/rdb.py | 56 30 + 26 - 0 !
Xlib/support/connect.py | 15 7 + 8 - 0 !
Xlib/support/unix_connect.py | 15 7 + 8 - 0 !
Xlib/support/vms_connect.py | 2 1 + 1 - 0 !
Xlib/threaded.py | 7 6 + 1 - 0 !
Xlib/xauth.py | 8 4 + 4 - 0 !
Xlib/xobject/colormap.py | 3 1 + 2 - 0 !
Xlib/xobject/cursor.py | 9 4 + 5 - 0 !
Xlib/xobject/drawable.py | 26 10 + 16 - 0 !
Xlib/xobject/fontable.py | 9 4 + 5 - 0 !
Xlib/xobject/resource.py | 8 4 + 4 - 0 !
examples/childwin.py | 14 7 + 7 - 0 !
examples/profilex.py | 6 3 + 3 - 0 !
examples/record_demo.py | 18 9 + 9 - 0 !
examples/shapewin.py | 28 14 + 14 - 0 !
examples/threadtest.py | 10 8 + 2 - 0 !
examples/xinerama.py | 14 7 + 7 - 0 !
examples/xrandr.py | 38 19 + 19 - 0 !
test/test_events_be.py | 254 128 + 126 - 0 !
test/test_events_le.py | 254 128 + 126 - 0 !
test/test_requests_be.py | 1752 880 + 872 - 0 !
test/test_requests_le.py | 1752 880 + 872 - 0 !
32 files changed, 2380 insertions(+), 2307 deletions(-)

 port code to work with python 3
remove debugging output.patch | (download)

Xlib/ext/randr.py | 2 0 + 2 - 0 !
1 file changed, 2 deletions(-)

---
texi2html.patch | (download)

doc/html/Makefile | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 use system texi2html


fix auth lp1482844.patch | (download)

Xlib/xauth.py | 5 3 + 2 - 0 !
1 file changed, 3 insertions(+), 2 deletions(-)

 [patch] fix get_best_auth for python 3

All self.entries items are byte strings, but get_best_auth receives
Unicode strings. Convert them to bytes before comparing.

This fixes a bug that prevented python3-xlib to find X11 cookies in
Xauthority, thus not allowing to use it without `xhost +`.