]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/gen_iface.py
Fix various documentation warnings throughout core and base.
[wxWidgets.git] / src / stc / gen_iface.py
index 9db059ea9fe5007f00049e7dd8690ff2faffe283..d332807c837984e21bfdb846b1acf7025755c308 100755 (executable)
@@ -6,7 +6,6 @@
 # Author:       Robin Dunn
 #
 # Created:      5-Sept-2000
-# RCS-ID:       $Id$
 # Copyright:    (c) 2000 by Total Control Software
 # Licence:      wxWindows licence
 #----------------------------------------------------------------------------
@@ -26,7 +25,7 @@ CPP_DEST      = os.path.abspath('./stc.cpp')
 if len(sys.argv) > 1 and sys.argv[1] == '--wxpython':
     DOCSTR_DEST   = os.path.abspath('../../../wxPython/src/_stc_gendocs.i')
 else:
-    DOCSTR_DEST   = '/dev/null'
+    DOCSTR_DEST   = None
 
 
 # Value prefixes to convert
@@ -999,7 +998,8 @@ def processIface(iface, h_tmplt, cpp_tmplt, ih_tmplt, h_dest, cpp_dest, docstr_d
     # write out destination files
     open(h_dest, 'w').write(h_text)
     open(cpp_dest, 'w').write(cpp_text)
-    open(docstr_dest, 'w').write(docstrings)
+    if docstr_dest:
+        open(docstr_dest, 'w').write(docstrings)
     open(ih_dest, 'w').write(ih_text)