~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2006-06-20 07:55:43 UTC
  • mfrom: (1798 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1799.
  • Revision ID: mbp@sourcefrog.net-20060620075543-b10f6575d4a4fa32
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
                  'stamp-h.in',
73
73
                  'stamp-h1',
74
74
                  '{arch}',
 
75
                  # Our setup tests dump .python-eggs in the bzr source tree
 
76
                  # root
 
77
                  './.python-eggs',
75
78
                  ]
76
79
 
77
80
IGNORE_FILENAME = ".bzrignore"
85
88
    sys.platform = 'darwin'
86
89
else:
87
90
    import locale
 
91
# XXX: This probably belongs in osutils instead
88
92
user_encoding = locale.getpreferredencoding() or 'ascii'
89
93
del locale
90
94