#4065 AccessInit: hash collision: 3 for both 1 and 1

v1.0.0
closed
General
2015-08-20
2012-04-17
Anonymous
No

Originally created by: celsius813

Hello,

I tried to install Allura on Ubuntu 11.10 and I went across some python import problem:

"AccessInit: hash collision: 3 for both 1 and 1"

Specifically, I had to change one occurrence of:

from StringIO import StringIO

into:

from cStringIO import StringIO

(since all the other import are made from cStringIO)

and several occurrence of:

import Image, StringIO

into:

from PIL import Image
from cStringIO import StringIO

(although I'm not sure the "from PIL" is necessary to import image, that was the first google result for the AccessInit error)

git Allura revision is 0a6486d23.. (HEAD as of today)
python version is 2.7.2+

1 Attachments

Discussion

  • Dave Brondsema

    Dave Brondsema - 2012-04-19
    • milestone: limbo --> forge-may-04
     
  • Dave Brondsema

    Dave Brondsema - 2012-04-19

    Let's try to reproduce this and the TurboGears/Pylons issues discussed at [77363df3]

     
  • Dave Brondsema

    Dave Brondsema - 2012-04-20
    • size: --> 2
     
  • Dave Brondsema

    Dave Brondsema - 2012-04-23
    • assigned_to: Dave␣Brondsema
     
  • Dave Brondsema

    Dave Brondsema - 2012-04-23
    • status: open --> code-review
    • qa: Tim Van Steenburgh
     
  • Dave Brondsema

    Dave Brondsema - 2012-04-23

    I wasn't able to duplicate this AccessInit error from PIL, but did make PasteDeploy and TG get installed correctly. forge:db/4065 has several commits, including some other improvements to installation.

     
    • status: code-review --> closed
     

Log in to post a comment.