spv-dev team mailing list archive
-
spv-dev team
-
Mailing list archive
-
Message #00039
[Branch ~spv-dev/slidepresenterview/trunk] Rev 58: Force comments only for public classes.
------------------------------------------------------------
revno: 58
committer: F.-A. Bourbonnais <bouf10pub@xxxxxxxxxxx>
branch nick: trunk
timestamp: Sat 2010-07-24 20:15:52 -0400
message:
Force comments only for public classes.
modified:
pylintrc
--
lp:slidepresenterview
https://code.launchpad.net/~spv-dev/slidepresenterview/trunk
Your team SlidePresenterView Development Team is subscribed to branch lp:slidepresenterview.
To unsubscribe from this branch go to https://code.launchpad.net/~spv-dev/slidepresenterview/trunk/+edit-subscription
=== modified file 'pylintrc'
--- pylintrc 2010-07-24 23:58:47 +0000
+++ pylintrc 2010-07-25 00:15:52 +0000
@@ -152,7 +152,9 @@
# Regular expression which should only match functions or classes name which do
# not require a docstring
-no-docstring-rgx=__.*__,setUp,tearDown,_.*
+# -- Only public classes *always* require a docstrign.
+#no-docstring-rgx=__.*__,setUp,tearDown,[_]?[a-z]*
+no-docstring-rgx=_.*|[_]?[a-z]*|__.*__
[VARIABLES]