File tree 3 files changed +21
-19
lines changed
3 files changed +21
-19
lines changed Original file line number Diff line number Diff line change @@ -9,53 +9,48 @@ MySQLdb Package
9
9
:undoc-members:
10
10
:show-inheritance:
11
11
12
- :mod: `connections ` Module
13
- -------------------------
12
+ :mod: `MySQLdb. connections ` Module
13
+ ---------------------------------
14
14
15
15
.. automodule :: MySQLdb.connections
16
16
:members: Connection
17
17
:undoc-members:
18
- :show-inheritance:
19
18
20
- :mod: `converters ` Module
21
- ------------------------
19
+ :mod: `MySQLdb. converters ` Module
20
+ --------------------------------
22
21
23
22
.. automodule :: MySQLdb.converters
24
23
:members:
25
24
:undoc-members:
26
- :show-inheritance:
27
25
28
- :mod: `cursors ` Module
29
- ---------------------
26
+ :mod: `MySQLdb. cursors ` Module
27
+ -----------------------------
30
28
31
29
.. automodule :: MySQLdb.cursors
32
- :members: Cursor
30
+ :members:
33
31
:undoc-members:
34
32
:show-inheritance:
35
33
36
- :mod: `times ` Module
37
- -------------------
34
+ :mod: `MySQLdb. times ` Module
35
+ ---------------------------
38
36
39
37
.. automodule :: MySQLdb.times
40
38
:members:
41
39
:undoc-members:
42
- :show-inheritance:
43
40
44
- :mod: `_mysql ` Module
45
- --------------------
41
+ :mod: `MySQLdb. _mysql ` Module
42
+ ----------------------------
46
43
47
44
.. automodule :: MySQLdb._mysql
48
45
:members:
49
46
:undoc-members:
50
- :show-inheritance:
51
47
52
- :mod: `_exceptions ` Module
53
- -------------------------
48
+ :mod: `MySQLdb. _exceptions ` Module
49
+ ---------------------------------
54
50
55
51
.. automodule :: MySQLdb._exceptions
56
52
:members:
57
53
:undoc-members:
58
- :show-inheritance:
59
54
60
55
61
56
Subpackages
Original file line number Diff line number Diff line change 22
22
23
23
# -- General configuration -----------------------------------------------------
24
24
25
+ nitpick_ignore = [
26
+ ("py:class" , "datetime.date" ),
27
+ ("py:class" , "datetime.time" ),
28
+ ("py:class" , "datetime.datetime" ),
29
+ ]
30
+
31
+
25
32
# If your documentation needs a minimal Sphinx version, state it here.
26
33
# needs_sphinx = "1.0"
27
34
Original file line number Diff line number Diff line change 8
8
from ._exceptions import ProgrammingError
9
9
10
10
11
- #: Regular expression for :meth:` Cursor.executemany`.
11
+ #: Regular expression for `` Cursor.executemany`` `.
12
12
#: executemany only supports simple bulk insert.
13
13
#: You can use it to load large dataset.
14
14
RE_INSERT_VALUES = re .compile (
You can’t perform that action at this time.
0 commit comments