mercurial/changegroup.py
changeset 8226 8b2cd04a6e97
parent 8225 46293a0c7e9f
child 8312 b87a50b7125c
equal deleted inserted replaced
8225:46293a0c7e9f 8226:8b2cd04a6e97
     1 """
     1 # changegroup.py - Mercurial changegroup manipulation functions
     2 changegroup.py - Mercurial changegroup manipulation functions
     2 #
     3 
     3 #  Copyright 2006 Matt Mackall <mpm@selenic.com>
     4  Copyright 2006 Matt Mackall <mpm@selenic.com>
     4 #
     5 
     5 # This software may be used and distributed according to the terms of the
     6 This software may be used and distributed according to the terms of the
     6 # GNU General Public License version 2, incorporated herein by reference.
     7 GNU General Public License version 2, incorporated herein by reference.
       
     8 """
       
     9 
     7 
    10 from i18n import _
     8 from i18n import _
    11 import struct, os, bz2, zlib, util, tempfile
     9 import struct, os, bz2, zlib, util, tempfile
    12 
    10 
    13 def getchunk(source):
    11 def getchunk(source):