Most typos are in comments, but two typos are in docstring.
This commit is contained in:
Inada Naoki 2023-06-30 13:00:22 +09:00 committed by GitHub
parent cd580910e1
commit 77ddc9a7b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 12 additions and 12 deletions

View file

@ -969,7 +969,7 @@ py_get_system_clock(_PyTime_t *tp, _Py_clock_info_t *info, int raise_exc)
}
#if defined(HAVE_CLOCK_GETTIME_RUNTIME) && defined(HAVE_CLOCK_GETTIME)
} /* end of availibity block */
} /* end of availability block */
#endif
#endif /* !HAVE_CLOCK_GETTIME */

View file

@ -425,7 +425,7 @@ PySys_AddAuditHook(Py_AuditHookFunction hook, void *userData)
e->userData = userData;
if (runtime->audit_hooks.mutex == NULL) {
/* The runtime must not be initailized yet. */
/* The runtime must not be initialized yet. */
add_audit_hook_entry_unlocked(runtime, e);
}
else {