/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/store/text.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-23 17:59:52 UTC
  • mfrom: (3788.1.5 msvc_python24)
  • Revision ID: pqm@pqm.ubuntu.com-20081023175952-0gr8np56nf6ab5yn
(jam) Allow extensions to compile for python2.4 and using msvc

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""A store that keeps the full text of every version.
18
18
 
44
44
    def _add_compressed(self, fn, f):
45
45
        from cStringIO import StringIO
46
46
        from bzrlib.osutils import pumpfile
47
 
 
 
47
        
48
48
        if isinstance(f, basestring):
49
49
            f = StringIO(f)
50
 
 
 
50
            
51
51
        sio = StringIO()
52
52
        gf = gzip.GzipFile(mode='wb', fileobj=sio)
53
53
        # if pumpfile handles files that don't fit in ram,