Fixed line length to 79 characters for all python scripts including twython3k

This commit is contained in:
kracekumar 2011-10-07 13:14:28 +05:30
parent 1d737b67d9
commit 17f54c1eb4
6 changed files with 448 additions and 218 deletions

View file

@ -1,15 +1,19 @@
"""
A huge map of every Twitter API endpoint to a function definition in Twython.
A huge map of every Twitter API endpoint to a function definition in \
Twython.
Parameters that need to be embedded in the URL are treated with mustaches, e.g:
Parameters that need to be embedded in the URL are treated with mustaches, \
e.g:
{{version}}, etc
When creating new endpoint definitions, keep in mind that the name of the mustache
will be replaced with the keyword that gets passed in to the function at call time.
When creating new endpoint definitions, keep in mind that the name of the \
mustache will be replaced with the keyword that gets passed in to the \
function at call time.
i.e, in this case, if I pass version = 47 to any function, {{version}} will be replaced
with 47, instead of defaulting to 1 (said defaulting takes place at conversion time).
i.e, in this case, if I pass version = 47 to any function, {{version}} will\
be replaced with 47, instead of defaulting to 1 (said defaulting takes \
place at conversion time).
"""
# Base Twitter API url, no need to repeat this junk...