/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/bundle/__init__.py

merge with bzr.dev and put the NEWS entry in the IN DEVELOPMENT section

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
 
17
from bzrlib.symbol_versioning import deprecated_function, deprecated_in
17
18
from bzrlib.lazy_import import lazy_import
18
19
lazy_import(globals(), """
19
20
from bzrlib import (
29
30
from bzrlib.trace import note
30
31
 
31
32
 
 
33
@deprecated_function(deprecated_in((1, 12, 0)))
32
34
def read_bundle_from_url(url):
33
35
    return read_mergeable_from_url(url, _do_directive=False)
34
36