-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix doc line linking #2025
Fix doc line linking #2025
Conversation
|
||
return source_path[1:] | ||
return source_path |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@tseaver there we go. LMKWYT! |
import pdoc | ||
from parinx.parser import parse_docstring | ||
from parinx.errors import MethodParsingException | ||
|
||
from verify_included_modules import get_public_modules | ||
|
||
ABSOLUTE_LIBRARY_PATH = '/'.join(os.path.abspath(gcloud.__file__) | ||
.split('/')[:-2]) | ||
|
||
|
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
3055ed3
to
6bbe052
Compare
if 'gcloud-python' in source: | ||
source_path = source.split('gcloud-python')[1] | ||
if ABSOLUTE_LIBRARY_PATH in source: | ||
source_path = source.replace(ABSOLUTE_LIBRARY_PATH, '') |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
The test fix is my bad: I introduced the test failure while merging / fixing up #2029. I restarted Travis after pushing my fix. |
LGTM |
Fixes #2024 and adds Error Reporting module.