~ubuntu-branches/ubuntu/raring/wxwidgets2.8/raring

« back to all changes in this revision

Viewing changes to wxPython/wx/tools/Editra/src/ebmlib/fchecker.py

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-07 13:59:25 UTC
  • mfrom: (1.1.9) (5.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120107135925-2601miy9ullcon9j
Tags: 2.8.12.1-6ubuntu1
* Resync from Debian, changes that were kept:
  - debian/rules: re-enable mediactrl. This allows libwx_gtk2u_media-2.8 to be
    built, as this is required by some applications (LP: #632984)
  - debian/control: Build-dep on libxt-dev for mediactrl.
  - Patches
    + fix-bashism-in-example
* Add conflict on python-wxgtk2.8 (<< 2.8.12.1-6ubuntu1~) to python-wxversion
  to guarantee upgrade ordering when moving from pycentral to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
"""
15
15
 
16
16
__author__ = "Cody Precord <cprecord@editra.org>"
17
 
__cvsid__ = "$Id: fchecker.py 62145 2009-09-26 14:29:57Z CJP $"
18
 
__revision__ = "$Revision: 62145 $"
 
17
__cvsid__ = "$Id: fchecker.py 65147 2010-07-31 05:59:58Z CJP $"
 
18
__revision__ = "$Revision: 65147 $"
19
19
 
20
20
__all__ = [ 'FileTypeChecker', ]
21
21
 
35
35
        @keyword preread: number of bytes to read for checking file type
36
36
 
37
37
        """
38
 
        object.__init__(self)
 
38
        super(FileTypeChecker, self).__init__()
39
39
 
40
40
        # Attributes
41
41
        self._preread = preread