Mercurial > public > mercurial-scm > hg
comparison mercurial/posix.py @ 14233:659f34b833b9
rename util.set_binary to setbinary
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Fri, 06 May 2011 15:25:35 +0200 |
parents | df2399663392 |
children | 600e64004eb5 |
comparison
equal
deleted
inserted
replaced
14232:df2399663392 | 14233:659f34b833b9 |
---|---|
126 def checkosfilename(path): | 126 def checkosfilename(path): |
127 '''Check that the base-relative path is a valid filename on this platform. | 127 '''Check that the base-relative path is a valid filename on this platform. |
128 Returns None if the path is ok, or a UI string describing the problem.''' | 128 Returns None if the path is ok, or a UI string describing the problem.''' |
129 pass # on posix platforms, every path is ok | 129 pass # on posix platforms, every path is ok |
130 | 130 |
131 def set_binary(fd): | 131 def setbinary(fd): |
132 pass | 132 pass |
133 | 133 |
134 def pconvert(path): | 134 def pconvert(path): |
135 return path | 135 return path |
136 | 136 |