File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,11 @@ PyDoc_STRVAR(
54
54
"\n"
55
55
"Parameter:\n"
56
56
"configuration: dictionary\n\n"
57
- "Sets the connection configuration for the connection pool."
57
+ "Sets the connection configuration for the connection pool.\n"
58
+ "For valid connection arguments check the mariadb.connect() method.\n\n"
59
+ "Note: This method doesn't create connections in the pool.\n"
60
+ "To fill the pool one has to use add_connection() ḿethod."
61
+
58
62
);
59
63
60
64
PyDoc_STRVAR (
Original file line number Diff line number Diff line change 29
29
30
30
PY_MARIADB_MAJOR_VERSION = 1
31
31
PY_MARIADB_MINOR_VERSION = 0
32
- PY_MARIADB_PATCH_VERSION = 0
32
+ PY_MARIADB_PATCH_VERSION = 1
33
33
# PY_MARIADB_PRE_RELEASE_SEGMENT=""
34
34
35
35
PY_MARIADB_VERSION = "%s.%s.%s" % (PY_MARIADB_MAJOR_VERSION , PY_MARIADB_MINOR_VERSION , PY_MARIADB_PATCH_VERSION )
You can’t perform that action at this time.
0 commit comments