python: Improve and generalize access reporting
commit0a97439701466011cf4231b838860c543d442e17
authorColomban Wendling <ban@herbesfolles.org>
Thu, 29 Jan 2015 15:14:12 +0000 (29 16:14 +0100)
committerColomban Wendling <ban@herbesfolles.org>
Wed, 11 Feb 2015 17:21:14 +0000 (11 18:21 +0100)
treea04e70bb3b1162ac5dd16894cc3b2e61b099da9a
parent7b17db666eb7a17fcfd33ebe6dba5bf528c3485a
python: Improve and generalize access reporting

Anything at the module/file level:
 * _... is protected
 * rest is public
Anything at the class level:
 * __...__ is public (magic method)
 * __... is private
 * _... is protected
 * rest is public
Anything at the function/method level:
 * everything is private

Closes https://github.com/fishman/ctags/issues/216.
tagmanager/ctags/python.c