~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/batching.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    )
39
39
 
40
40
from lp.services.config import config
41
 
from lp.services.database.decoratedresultset import DecoratedResultSet
42
 
from lp.services.database.sqlbase import (
 
41
from canonical.database.sqlbase import (
43
42
    convert_storm_clause_to_string,
44
43
    sqlvalues,
45
44
    )
46
 
from lp.services.propertycache import cachedproperty
47
45
from lp.services.webapp.interfaces import (
48
46
    IStoreSelector,
49
47
    ITableBatchNavigator,
52
50
    StormRangeFactoryError,
53
51
    )
54
52
from lp.services.webapp.publisher import LaunchpadView
 
53
from lp.services.database.decoratedresultset import DecoratedResultSet
 
54
from lp.services.propertycache import cachedproperty
55
55
 
56
56
 
57
57
class FiniteSequenceAdapter: