Merge branch 'issue52' into devel

This commit is contained in:
jevans 2013-06-20 18:10:13 -04:00
commit d37f4cc43c
2 changed files with 6 additions and 6 deletions

View file

@ -29,7 +29,7 @@ for _marker in range(0xff90, 0xff94):
_valid_markers.append(_marker)
class Codestream:
class Codestream(object):
"""Container for codestream information.
Attributes
@ -869,7 +869,7 @@ class Codestream:
return TLMsegment(**kwargs)
class Segment:
class Segment(object):
"""Segment information.
Attributes

View file

@ -33,7 +33,7 @@ from .core import _method_display
from .core import _reader_requirements_display
class Jp2kBox:
class Jp2kBox(object):
"""Superclass for JPEG 2000 boxes.
Attributes
@ -243,7 +243,7 @@ class ColourSpecificationBox(Jp2kBox):
return box
class _ICCProfile:
class _ICCProfile(object):
"""
"""
profile_class = {b'scnr': 'input device profile',
@ -1773,7 +1773,7 @@ class UUIDBox(Jp2kBox):
return box
class Exif:
class Exif(object):
"""
Attributes
----------
@ -1826,7 +1826,7 @@ class Exif:
self.exif_gpsinfo = gps.processed_ifd
class _Ifd:
class _Ifd(object):
"""
Attributes
----------