~ubuntu-branches/ubuntu/raring/agtl/raring

« back to all changes in this revision

Viewing changes to freerunner/usr/lib/site-python/advancedcaching/extListview.py

  • Committer: Bazaar Package Importer
  • Author(s): Heiko Stuebner
  • Date: 2009-10-17 15:07:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091017150719-khg6mg5o99upitof
Tags: 0.4.0+git20091011-1
* new upstream-snapshot
* patches updated accordingly
* incorporated Steffen Moellers fixes to the files in debian/

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
from gobject import signal_new
57
57
import gtk
58
58
from gtk import gdk
59
 
import random
 
59
 
60
60
 
61
61
 
62
62
# Internal d'n'd (reordering)
479
479
 
480
480
 
481
481
    def shuffle(self):
 
482
        import random
482
483
        """ Shuffle the content of the list """
483
484
        order = xrange(len(self.store))
484
485
        random.shuffle(order)