~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weavefile.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 13:23:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6386.
  • Revision ID: jelmer@canonical.com-20111219132358-uvs5a6y92gomzacd
Move importing from future until after doc string, otherwise the doc string will disappear.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#
17
17
# Author: Martin Pool <mbp@canonical.com>
18
18
 
19
 
from __future__ import absolute_import
20
 
 
21
 
 
22
 
 
23
19
"""Store and retrieve weaves in files.
24
20
 
25
21
There is one format marker followed by a blank line, followed by a
38
34
line contains a newline, or ',' if not.
39
35
"""
40
36
 
 
37
from __future__ import absolute_import
 
38
 
41
39
# TODO: When extracting a single version it'd be enough to just pass
42
40
# an iterator returning the weave lines...  We don't really need to
43
41
# deserialize it into memory.