[Checkins] SVN: z3c.recipe.tag/trunk/ Exclude Python import statements by default from showing up as tags.

Christian Theune cvs-admin at zope.org
Tue Aug 21 14:54:15 UTC 2012


Log message for revision 127542:
  Exclude Python import statements by default from showing up as tags.
  

Changed:
  U   z3c.recipe.tag/trunk/CHANGES.txt
  U   z3c.recipe.tag/trunk/src/z3c/recipe/tag/__init__.py

-=-
Modified: z3c.recipe.tag/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.tag/trunk/CHANGES.txt	2012-08-21 14:49:54 UTC (rev 127541)
+++ z3c.recipe.tag/trunk/CHANGES.txt	2012-08-21 14:54:11 UTC (rev 127542)
@@ -5,6 +5,8 @@
 0.5 (unreleased)
 ------------------
 
+- Exclude Python import statements by default from showing up as tags.
+
 - Add 'defaults' option to allow adding default command line options (e.g. to
   set '-v' by default)
 

Modified: z3c.recipe.tag/trunk/src/z3c/recipe/tag/__init__.py
===================================================================
--- z3c.recipe.tag/trunk/src/z3c/recipe/tag/__init__.py	2012-08-21 14:49:54 UTC (rev 127541)
+++ z3c.recipe.tag/trunk/src/z3c/recipe/tag/__init__.py	2012-08-21 14:54:11 UTC (rev 127542)
@@ -125,6 +125,7 @@
     def _build_ctags_vi(self):
         res = [['ctags-exuberant', 'ctags'],
                ['-R',
+                '--python-kinds=-i',
                 '-f',
                 'tags.new'] + self.paths,
                 'tags.new',



More information about the checkins mailing list