Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
master_doc = "index"

# General information about the project.
project = u"PyMySQL"
copyright = u"2016, Yutaka Matsubara and GitHub contributors"
project = "PyMySQL"
copyright = "2016, Yutaka Matsubara and GitHub contributors"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -200,8 +200,8 @@
(
"index",
"PyMySQL.tex",
u"PyMySQL Documentation",
u"Yutaka Matsubara and GitHub contributors",
"PyMySQL Documentation",
"Yutaka Matsubara and GitHub contributors",
"manual",
),
]
Expand Down Expand Up @@ -235,8 +235,8 @@
(
"index",
"pymysql",
u"PyMySQL Documentation",
[u"Yutaka Matsubara and GitHub contributors"],
"PyMySQL Documentation",
["Yutaka Matsubara and GitHub contributors"],
1,
)
]
Expand All @@ -254,8 +254,8 @@
(
"index",
"PyMySQL",
u"PyMySQL Documentation",
u"Yutaka Matsubara and GitHub contributors",
"PyMySQL Documentation",
"Yutaka Matsubara and GitHub contributors",
"PyMySQL",
"One line description of project.",
"Miscellaneous",
Expand Down
2 changes: 1 addition & 1 deletion pymysql/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

DEFAULT_CHARSET = "utf8mb4"

MAX_PACKET_LEN = 2 ** 24 - 1
MAX_PACKET_LEN = 2**24 - 1


def _pack_int24(n):
Expand Down