Doh, sorry about that.  Pretend you didn't see that, I'll get it out tomorrow <br><div class="gmail_quote">On Wed, May 27, 2015 at 2:42 PM Greg Clayton <<a href="mailto:clayborg@gmail.com">clayborg@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Looks like some windowns specific code was left in dosep.py:<br>
<br>
  import ctypes<br>
  from ctypes import wintypes<br>
<br>
  _OutputDebugString = ctypes.windll.kernel32.OutputDebugStringA<br>
  _OutputDebugString.argtypes = [wintypes.LPCSTR]<br>
  _OutputDebugString.restype = None<br>
<br>
<br>
================<br>
Comment at: test/dosep.py:33-39<br>
@@ -32,2 +32,9 @@<br>
<br>
+import ctypes<br>
+from ctypes import wintypes<br>
+<br>
+_OutputDebugString = ctypes.windll.kernel32.OutputDebugStringA<br>
+_OutputDebugString.argtypes = [wintypes.LPCSTR]<br>
+_OutputDebugString.restype = None<br>
+<br>
 from optparse import OptionParser<br>
----------------<br>
Doesn't this only need to be done on windows? Shouldn't you check for platform being windows?<br>
<br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__reviews.llvm.org_D10068&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=Vmxxw6FIV-VnVB_goyjN4nc--of4aJtiwkKoyvuQ9VA&s=v8DpH7Ya6V8j7TiwngFNb57ehMRokGAt2JtDon0Mnak&e=" target="_blank">http://reviews.llvm.org/D10068</a><br>
<br>
EMAIL PREFERENCES<br>
  <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__reviews.llvm.org_settings_panel_emailpreferences_&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=Vmxxw6FIV-VnVB_goyjN4nc--of4aJtiwkKoyvuQ9VA&s=pGfScNwzWrcY2ofYw7grNy1kNNESMIeShtVf5nnbx5I&e=" target="_blank">http://reviews.llvm.org/settings/panel/emailpreferences/</a><br>
<br>
<br>
</blockquote></div>