Merge typo fixes from 3.3.

This commit is contained in:
Ezio Melotti 2013-01-27 06:20:51 +02:00
commit 3a62e45b97
10 changed files with 10 additions and 10 deletions

View file

@ -3598,7 +3598,7 @@ time_isoformat(PyDateTime_Time *self, PyObject *unused)
{
char buf[100];
PyObject *result;
int us = TIME_GET_MICROSECOND(self);;
int us = TIME_GET_MICROSECOND(self);
if (us)
result = PyUnicode_FromFormat("%02d:%02d:%02d.%06d",

View file

@ -2084,7 +2084,7 @@ mpd_qcmp(const mpd_t *a, const mpd_t *b, uint32_t *status)
}
/*
* Compare a and b, convert the the usual integer result to a decimal and
* Compare a and b, convert the usual integer result to a decimal and
* store it in 'result'. For convenience, the integer result of the comparison
* is returned. Comparisons involving NaNs return NaN/INT_MAX.
*/