Skip to content

Commit 0f26ac3

Browse files
authored
Merge pull request #160 from dropbox/rob/fix_async_docs
fix async docs
2 parents 287f77f + 402e560 commit 0f26ac3

25 files changed

+28
-62
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ __pycache__/
1212
*.pyc
1313
*.pyo
1414
*~
15+
.venv

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[MESSAGES CONTROL]
2-
disable=C,R,file-ignored,fixme,locally-disabled,protected-access,useless-else-on-loop
2+
disable=C,R,file-ignored,fixme,locally-disabled,protected-access,useless-else-on-loop,unnecessary-pass
33
enable=useless-suppression
44

55
[REPORTS]

docs/api/async.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
:mod:`dropbox.async` -- Async
2-
============================================
3-
.. automodule:: dropbox.async
1+
:mod:`dropbox.async_` -- Async
2+
==============================
3+
*As of Python 3.5,* ``async`` *is a reserved keyword. For versions of Python prior to 3.5, the objects documented can be imported from either* ``dropbox.async`` *or* ``dropbox.async_``. *For Python 3.5+, only* ``dropbox.async_`` *is supported.*
4+
5+
.. automodule:: dropbox.async_
46
:members:
57
:show-inheritance:
68
:special-members: __init__

docs/api/auth.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.auth` -- Auth
2-
============================================
2+
===========================
33
.. automodule:: dropbox.auth
44
:members:
55
:show-inheritance:

docs/api/common.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.common` -- Common
2-
============================================
2+
===============================
33
.. automodule:: dropbox.common
44
:members:
55
:show-inheritance:

docs/api/contacts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.contacts` -- Contacts
2-
============================================
2+
===================================
33
.. automodule:: dropbox.contacts
44
:members:
55
:show-inheritance:

docs/api/dropbox.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.dropbox` -- Dropbox
2-
============================================
2+
=================================
33
.. automodule:: dropbox.dropbox
44
:members:
55
:show-inheritance:

docs/api/exceptions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.exceptions` -- Exceptions
2-
============================================
2+
=======================================
33
.. automodule:: dropbox.exceptions
44
:members:
55
:show-inheritance:

docs/api/file_properties.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.file_properties` -- File Properties
2-
============================================
2+
=================================================
33
.. automodule:: dropbox.file_properties
44
:members:
55
:show-inheritance:

docs/api/file_requests.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`dropbox.file_requests` -- File Requests
2-
============================================
2+
=============================================
33
.. automodule:: dropbox.file_requests
44
:members:
55
:show-inheritance:

0 commit comments

Comments
 (0)