##// END OF EJS Templates
pycompat: define operating system constants...
Jun Wu -
r34645:c0a6c196 default
parent child Browse files
Show More
@@ -316,3 +316,7 b' else:'
316 rawinput = raw_input
316 rawinput = raw_input
317
317
318 isjython = sysplatform.startswith('java')
318 isjython = sysplatform.startswith('java')
319
320 isdarwin = sysplatform == 'darwin'
321 isposix = osname == 'posix'
322 iswindows = osname == 'nt'
General Comments 0
You need to be logged in to leave comments. Login now