~bennabiy/+junk/python-xlib

« back to all changes in this revision

Viewing changes to Xlib/protocol/request.py

  • Committer: Package Import Robot
  • Author(s): Andrew Shadura, Ramkumar Ramachandra, Andrew Shadura
  • Date: 2015-08-13 08:14:19 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20150813081419-hdefinnghp2iydkx
Tags: 0.14+20091101-3
[ Ramkumar Ramachandra ]
* Remove useless debugging output (Closes: #565996)

[ Andrew Shadura ]
* Switch to 3.0 (quilt) format.
* Rename patches.
* Use debhelper 9 in its short form.
* Use pybuild.
* Bump Standards-Version.
* Don't build or install PostScript documentation and info files.
* Use system-provided texi2html instead of a shipped version
  (Closes: #795057).
* Update debian/copyright (Closes: #795057).
* Don't install Makefile or texi2html with the documentation.
* Set executable bit for examples.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from Xlib import X
22
22
 
23
23
# Xlib.protocol modules
24
 
import rq
25
 
import structs
 
24
from Xlib.protocol import rq, structs
26
25
 
27
26
 
28
27
class CreateWindow(rq.Request):
784
783
 
785
784
    def __init__(self, *args, **keys):
786
785
        self._fonts = []
787
 
        apply(ReplyRequest.__init__, (self, ) + args, keys)
 
786
        ReplyRequest.__init__(*(self, ) + args, **keys)
788
787
 
789
788
    def _parse_response(self, data):
790
789