~ubuntu-branches/debian/wheezy/bzr/wheezy

« back to all changes in this revision

Viewing changes to bzrlib/plugins/netrc_credential_store/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij, Jelmer Vernooij, John Ferlito
  • Date: 2011-04-05 14:38:50 UTC
  • Revision ID: james.westby@ubuntu.com-20110405143850-oi7cy895yzwwpeaz
Tags: 2.3.1-2
[ Jelmer Vernooij ]
* Add python-medusa, python-lzma and python-meliae as build
  dependencies (used by the test suite).

[ John Ferlito ]
* Remove John Ferlito from Uploaders.

[ Jelmer Vernooij ]
* Prefer cython as build dependency.
* Remove generated C files during clean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    )
26
26
 
27
27
lazy_import.lazy_import(globals(), """
28
 
    import errno
29
 
    import netrc
 
28
import errno
 
29
import netrc
30
30
 
31
 
    from bzrlib import (
32
 
        errors,
33
 
        )
 
31
from bzrlib import (
 
32
    errors,
 
33
    )
34
34
""")
35
35
 
36
36