[Python-checkins] python/dist/src/Doc/tools undoc_symbols.py, 1.5, 1.5.18.1

theller at users.sourceforge.net theller at users.sourceforge.net
Wed Jun 9 14:33:50 EDT 2004


Update of /cvsroot/python/python/dist/src/Doc/tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26926

Modified Files:
      Tag: release23-maint
	undoc_symbols.py 
Log Message:
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.


Index: undoc_symbols.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tools/undoc_symbols.py,v
retrieving revision 1.5
retrieving revision 1.5.18.1
diff -C2 -d -r1.5 -r1.5.18.1
*** undoc_symbols.py	16 Apr 2002 15:04:56 -0000	1.5
--- undoc_symbols.py	9 Jun 2004 18:33:48 -0000	1.5.18.1
***************
*** 78,82 ****
      incfiles = os.path.join(incdir, INCLUDEPATTERN)
  
!     fp = os.popen("ctags -IDL_IMPORT --c-types=%s -f - %s"
                    % (TAG_KINDS, incfiles))
      dict = findnames(fp, prefix)
--- 78,82 ----
      incfiles = os.path.join(incdir, INCLUDEPATTERN)
  
!     fp = os.popen("ctags -IPyAPI_FUNC --c-types=%s -f - %s"
                    % (TAG_KINDS, incfiles))
      dict = findnames(fp, prefix)




More information about the Python-checkins mailing list