Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 07f4739

Browse filesBrowse files
committed
Spelling and grammar fixes
1 parent cddc375 commit 07f4739
Copy full SHA for 07f4739

File tree

Expand file treeCollapse file tree

4 files changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+4
-4
lines changed

‎MySQLdb/connections.py

Copy file name to clipboardExpand all lines: MySQLdb/connections.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class object, used to create cursors (keyword only)
208208

209209
self._server_version = tuple([ numeric_part(n) for n in self.get_server_info().split('.')[:2] ])
210210

211-
self.encoding = 'ascii' # overriden in set_character_set()
211+
self.encoding = 'ascii' # overridden in set_character_set()
212212
db = proxy(self)
213213

214214
# Note: string_literal() is called for bytes object on Python 3 (via bytes_literal)

‎doc/user_guide.rst

Copy file name to clipboardExpand all lines: doc/user_guide.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ MySQLdb User's Guide
88
Introduction
99
------------
1010

11-
MySQLdb is an thread-compatible interface to the popular MySQL
11+
MySQLdb is a thread-compatible interface to the popular MySQL
1212
database server that provides the Python database API.
1313

1414
Installation

‎tests/dbapi20.py

Copy file name to clipboardExpand all lines: tests/dbapi20.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def test_fetchall(self):
633633
cur.execute(sql)
634634

635635
# cursor.fetchall should raise an Error if called
636-
# after executing a a statement that cannot return rows
636+
# after executing a statement that cannot return rows
637637
self.assertRaises(self.driver.Error,cur.fetchall)
638638

639639
cur.execute('select name from %sbooze' % self.table_prefix)

‎tests/test_MySQLdb_dbapi20.py

Copy file name to clipboardExpand all lines: tests/test_MySQLdb_dbapi20.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_fetchall(self):
3535
cur.execute(sql)
3636

3737
# cursor.fetchall should raise an Error if called
38-
# after executing a a statement that cannot return rows
38+
# after executing a statement that cannot return rows
3939
#self.assertRaises(self.driver.Error,cur.fetchall)
4040

4141
cur.execute('select name from %sbooze' % self.table_prefix)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.