I used to use ctags to generate a tags file for all installed python libraries by this command:
C:\Windows\System32>ctags -R -f d:\home\vimfiles\python.ctags d:\Python26
But this morning, after I upgraded to Python 2.6.7, that command only generates the following output and never finishes its job. The size of the tags file doesn't change anymore once it reaches about 11MB.
ctags: Warning: ignoring null tag in d:\Python26\Lib\copy.py
ctags: Warning: ignoring null tag in d:\Python26\Lib\pickle.py
ctags: Warning: ignoring null tag in d:\Python26\Lib\site-packages\django\contrib\admin\sites.py
What might cause this problem?