utilities.rst
1 Utilities 2 ========= 3 4 Logging 5 ------- 6 7 .. autofunction:: github.enable_console_debug_logging 8 9 Error Handling 10 -------------- 11 12 .. automodule:: github.GithubException 13 14 Default argument 15 ---------------- 16 17 :const:`github.NotSet` is a special value for arguments you don't want to provide. You should not have to manipulate it directly, because it's the default value of all parameters accepting it. Just note that it is different from :const:`None`, which is an allowed value for some parameters. 18 19 Pagination 20 ---------- 21 22 .. autoclass:: github.PaginatedList.PaginatedList() 23 24 Input classes 25 ------------- 26 27 .. autoclass:: github.InputFileContent.InputFileContent 28 .. autoclass:: github.InputGitAuthor.InputGitAuthor 29 .. autoclass:: github.InputGitTreeElement.InputGitTreeElement