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/diff.py
-
Committer:
John Arbash Meinel
-
Date:
2006-09-06 15:32:11 UTC
-
mto:
This revision was merged to the branch mainline in
revision
1990.
-
Revision ID:
john@arbash-meinel.com-20060906153211-9519b9dfdf3daf60
Don't use preexec_fn on win32
Show diffs side-by-side
added
removed
103
103
:return: A Popen object.
105
105
if capture_errors:
106
preexec_fn = _set_lang_C
106
if sys.platform == 'win32':
107
# Win32 doesn't support preexec_fn, but that is
108
# okay, because it doesn't support LANG either.
111
preexec_fn = _set_lang_C
107
112
stderr = subprocess.PIPE
109
114
preexec_fn = None