##// END OF EJS Templates
make_file: always return a fresh file handle that can be closed...
Dan Villiom Podlaski Christiansen -
r13121:bf763946 default
parent child Browse files
Show More
@@ -233,7 +233,8 b' def make_file(repo, pat, node=None,'
233 233 writable = 'w' in mode or 'a' in mode
234 234
235 235 if not pat or pat == '-':
236 return writable and sys.stdout or sys.stdin
236 fp = writable and sys.stdout or sys.stdin
237 return os.fdopen(os.dup(fp.fileno()), mode)
237 238 if hasattr(pat, 'write') and writable:
238 239 return pat
239 240 if hasattr(pat, 'read') and 'r' in mode:
@@ -73,8 +73,8 b' test generic hooks'
73 73 [1]
74 74 $ hg cat b
75 75 pre-cat hook: HG_ARGS=cat b HG_OPTS={'rev': '', 'decode': None, 'exclude': [], 'output': '', 'include': []} HG_PATS=['b']
76 b
76 77 post-cat hook: HG_ARGS=cat b HG_OPTS={'rev': '', 'decode': None, 'exclude': [], 'output': '', 'include': []} HG_PATS=['b'] HG_RESULT=0
77 b
78 78
79 79 $ cd ../b
80 80 $ hg pull ../a
General Comments 0
You need to be logged in to leave comments. Login now