[00:43:34] <wiredfool> aclark: so, it looks like RTD doesn't have littlecms installed, so the pillow build isn't including littlecms. Somehting in our docs includes ImageCms.py for the docstrings, which does an unconditional include of _imagingcms
[09:25:16] <juzza1> bug, or am i understanding this wrong? in Image.paste method http://pillow.readthedocs.org/en/latest/reference/Image.html#the-image-class it says "Pastes another image into this image. The box argument is either a 2-tuple giving the upper left corner, a 4-tuple defining the left, upper, right, and lower pixel coordinate, or None (same as (0, 0))"
[09:25:31] <juzza1> however, in the source code: http://pillow.readthedocs.org/en/latest/_modules/PIL/Image.html#Image.paste
[09:26:00] <juzza1> if box is None: # cover all of self box = (0, 0) + self.size
[09:26:44] <juzza1> so None defaults to (0, 0) + self size instead of just (0, 0) as written in the method description
[09:31:59] <juzza1> so None defaults to (0, 0) + self size instead of just (0, 0) as written in the method description
[10:09:42] <arsham> I'm trying to use pillow in django, everything works as expected in developement env, but inproduction server it complains it cannot import _imaging
[10:10:20] <arsham> wired enough if I user ./manage.py shell, and import my module that imports PIL.Image, it works just fine
[10:10:47] <arsham> production server has python3.3 with mod_wsgi
[10:11:58] <arsham> I appreciate if you could give me some ideas
[12:28:38] <arsham> nevermind, it was wrong python version
[15:12:41] <wiredfool> juzza1: sounds like a documentation bug
[15:31:30] <wiredfool> aclark: my readthedocs branch just built a valid PDF
[15:31:47] <wiredfool> Issues it has, but it's at least a successful build
[15:33:51] <wiredfool> (not that imagecms autodoc is working correctly, but it's at least got the methods.)