GNOME Bugzilla – Bug 489405
Address _acc issue in Gecko (pyatspi migration)
Last modified: 2008-07-22 19:32:27 UTC
Accessible._acc, where Accessible is a document frame, was used as a key to cache context information in Gecko.py. The key needs to change now that pyatspi is being rolled in because this information is no longer available. Eitan has proposed that we use the hash() method on these accessibles because they will produce a consistent unique value that can be used for the key.
Created attachment 97732 [details] [review] first version of Address _acc issue in Gecko first version simply replaces documentFrame._acc with hash(documentFrame).
I just tried the patch and it seems to work.
Looks good. Thanks!
committed to trunk.