~ubuntu-branches/ubuntu/raring/python-imaging/raring-updates

« back to all changes in this revision

Viewing changes to PIL/DcxImagePlugin.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-03-20 16:44:01 UTC
  • mfrom: (2.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20130320164401-ptf6m0ttg4zw72az
Tags: 1.1.7+2.0.0-1
Pillow 2.0.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
__version__ = "0.2"
25
25
 
26
 
from . import Image, _binary
 
26
from PIL import Image, _binary
27
27
 
28
 
from .PcxImagePlugin import PcxImageFile
 
28
from PIL.PcxImagePlugin import PcxImageFile
29
29
 
30
30
MAGIC = 0x3ADE68B1 # QUIZ: what's this value, then?
31
31