Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"

# command to install dependencies
install:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
NEWS for Python X Library

Version 0.29
============

Extensions
--------------------

- Drawable & XInput: Avoid using array.array.tostring() which wiil be removed in Python 3.9 (thanks @t-wissmann).

---
Version 0.28
============

Expand Down
2 changes: 1 addition & 1 deletion Xlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Suite 330,
# Boston, MA 02111-1307 USA

__version__ = (0, 28)
__version__ = (0, 29)

__version_extra__ = ''

Expand Down
2 changes: 1 addition & 1 deletion Xlib/ext/xinput.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def fun(val):
else:
mask_seq.extend(val)

return mask_seq.tostring(), len(mask_seq), None
return rq.encode_array(mask_seq), len(mask_seq), None

EventMask = rq.Struct(
DEVICE('deviceid'),
Expand Down