mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix a bunch of typos in documentation, docstrings and comments.
(From SF patch #810751)
This commit is contained in:
parent
4b17e3993b
commit
f0dfc7ac5c
43 changed files with 47 additions and 47 deletions
|
@ -224,7 +224,7 @@ newPySSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file)
|
|||
Py_END_ALLOW_THREADS
|
||||
SSL_set_fd(self->ssl, Sock->sock_fd); /* Set the socket for SSL */
|
||||
|
||||
/* If the socket is is non-blocking mode or timeout mode, set the BIO
|
||||
/* If the socket is in non-blocking mode or timeout mode, set the BIO
|
||||
* to non-blocking mode (blocking is the default)
|
||||
*/
|
||||
if (Sock->sock_timeout >= 0.0) {
|
||||
|
|
|
@ -899,7 +899,7 @@ offset_as_timedelta(PyObject *tzinfo, char *name, PyObject *tzinfoarg) {
|
|||
* result. tzinfo must be an instance of the tzinfo class. If dst()
|
||||
* returns None, call_dst returns 0 and sets *none to 1. If dst()
|
||||
& doesn't return None or timedelta, TypeError is raised and this
|
||||
* returns -1. If dst() returns an invalid timedelta for for a UTC offset,
|
||||
* returns -1. If dst() returns an invalid timedelta for a UTC offset,
|
||||
* ValueError is raised and this returns -1. Else *none is set to 0 and
|
||||
* the offset is returned (as an int # of minutes east of UTC).
|
||||
*/
|
||||
|
@ -4818,7 +4818,7 @@ z' = z + z.d = 1:MM then, and z'.d=0, and z'.d - z.d = -60 != 0 so [8]
|
|||
|
||||
Because we know z.d said z was in daylight time (else [5] would have held and
|
||||
we would have stopped then), and we know z.d != z'.d (else [8] would have held
|
||||
and we we have stopped then), and there are only 2 possible values dst() can
|
||||
and we would have stopped then), and there are only 2 possible values dst() can
|
||||
return in Eastern, it follows that z'.d must be 0 (which it is in the example,
|
||||
but the reasoning doesn't depend on the example -- it depends on there being
|
||||
two possible dst() outcomes, one zero and the other non-zero). Therefore
|
||||
|
|
|
@ -154,7 +154,7 @@ Py_Main(int argc, char **argv)
|
|||
if (c == 'c') {
|
||||
/* -c is the last option; following arguments
|
||||
that look like options are left for the
|
||||
the command to interpret. */
|
||||
command to interpret. */
|
||||
command = malloc(strlen(_PyOS_optarg) + 2);
|
||||
if (command == NULL)
|
||||
Py_FatalError(
|
||||
|
|
|
@ -141,7 +141,7 @@ MD5Update(MD5_CTX *context, unsigned char *input, unsigned int inputLen)
|
|||
}
|
||||
|
||||
/* MD5 finalization. Ends an MD5 message-digest operation, writing the
|
||||
the message digest and zeroing the context.
|
||||
message digest and zeroing the context.
|
||||
*/
|
||||
void
|
||||
MD5Final(unsigned char digest[16], MD5_CTX *context)
|
||||
|
|
|
@ -3953,7 +3953,7 @@ _PyPopen(char *cmdstring, int mode, int n)
|
|||
|
||||
/* Create new output read handle and the input write handle. Set
|
||||
* the inheritance properties to FALSE. Otherwise, the child inherits
|
||||
* the these handles; resulting in non-closeable handles to the pipes
|
||||
* these handles; resulting in non-closeable handles to the pipes
|
||||
* being created. */
|
||||
fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
|
||||
GetCurrentProcess(), &hChildStdinWrDup, 0,
|
||||
|
|
|
@ -573,7 +573,7 @@ restrictions:
|
|||
|
||||
/* #define DEBUG */
|
||||
|
||||
/* Use a macro for debugging printing, 'cause that eliminates the the use
|
||||
/* Use a macro for debugging printing, 'cause that eliminates the use
|
||||
of #ifdef inline, and there are *still* stupid compilers about that don't like
|
||||
indented pre-processor statements. I suppose it's only been 10 years... */
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ shutdown(how) -- shut down traffic in one or both directions\n\
|
|||
\n\
|
||||
[*] not available on all platforms!");
|
||||
|
||||
/* XXX This is a terrible mess of of platform-dependent preprocessor hacks.
|
||||
/* XXX This is a terrible mess of platform-dependent preprocessor hacks.
|
||||
I hope some day someone can clean this up please... */
|
||||
|
||||
/* Hacks for gethostbyname_r(). On some non-Linux platforms, the configure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue