File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ Release: 2019-08-09
94
94
95
95
* ``--static `` build supports ``libmariadbclient.a ``
96
96
* Try ``mariadb_config `` when ``mysql_config `` is not found
97
- * Fixed warning happend in Python 3.8 (#359)
97
+ * Fixed warning happened in Python 3.8 (#359)
98
98
* Fixed ``from MySQLdb import * ``, while I don't recommend it. (#369)
99
99
* Fixed SEGV ``MySQLdb.escape_string("1") `` when libmariadb is used and
100
100
no connection is created. (#367)
@@ -294,7 +294,7 @@ More tests for date and time columns. (#41)
294
294
295
295
Fix calling .execute() method for closed cursor cause TypeError. (#37)
296
296
297
- Improve peformance to parse date. (#43)
297
+ Improve performance to parse date. (#43)
298
298
299
299
Support geometry types (#49)
300
300
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ _mysql_ResultObject_Initialize(
310
310
PyObject * fun2 = NULL ;
311
311
int j , n2 = PySequence_Size (fun );
312
312
// BINARY_FLAG means ***_bin collation is used.
313
- // To distinguish text and binary, we shoud use charsetnr==63 (binary).
313
+ // To distinguish text and binary, we should use charsetnr==63 (binary).
314
314
// But we abuse BINARY_FLAG for historical reason.
315
315
if (fields [i ].charsetnr == 63 ) {
316
316
flags |= BINARY_FLAG ;
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ def fetchmany(self, size=None):
375
375
return result
376
376
377
377
def fetchall (self ):
378
- """Fetchs all available rows from the cursor."""
378
+ """Fetches all available rows from the cursor."""
379
379
self ._check_executed ()
380
380
if self .rownumber :
381
381
result = self ._rows [self .rownumber :]
@@ -437,7 +437,7 @@ def fetchmany(self, size=None):
437
437
return r
438
438
439
439
def fetchall (self ):
440
- """Fetchs all available rows from the cursor."""
440
+ """Fetches all available rows from the cursor."""
441
441
self ._check_executed ()
442
442
r = self ._fetch_row (0 )
443
443
self .rownumber = self .rownumber + len (r )
Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ callproc(procname, args)
511
511
can only be returned with a SELECT statement. Since a stored
512
512
procedure may return zero or more result sets, it is impossible
513
513
for MySQLdb to determine if there are result sets to fetch
514
- before the modified parmeters are accessible.
514
+ before the modified parameters are accessible.
515
515
516
516
The parameters are stored in the server as @_*procname*_*n*,
517
517
where *n * is the position of the parameter. I.e., if you
Original file line number Diff line number Diff line change @@ -793,7 +793,7 @@ def test_setoutputsize_basic(self):
793
793
con .close ()
794
794
795
795
def test_setoutputsize (self ):
796
- # Real test for setoutputsize is driver dependant
796
+ # Real test for setoutputsize is driver dependent
797
797
raise NotImplementedError ("Driver need to override this test" )
798
798
799
799
def test_None (self ):
You can’t perform that action at this time.
0 commit comments