/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

  • Committer: Jelmer Vernooij
  • Date: 2009-02-11 19:27:20 UTC
  • mfrom: (3978.4.1 branch-bzrdir-inter)
  • mto: This revision was merged to the branch mainline in revision 4250.
  • Revision ID: jelmer@samba.org-20090211192720-8g4sure689gq5fod
Merge bzr.dev.

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