Staging
v0.5.1
https://github.com/python/cpython
Revision d5c5f7955280db3ec8aa49c50b4f31a4bd5c50b7 authored by Miss Skeleton (bot) on 02 October 2020, 21:05:36 UTC, committed by GitHub on 02 October 2020, 21:05:36 UTC

* Correct at 2 places in email module
(cherry picked from commit 9cd01ece78e63bf98a1d25f70d5a020adf07ca4a)

Co-authored-by: Hansraj Das <raj.das.136@gmail.com>
1 parent ab32ea8
Raw File
Tip revision: d5c5f7955280db3ec8aa49c50b4f31a4bd5c50b7 authored by Miss Skeleton (bot) on 02 October 2020, 21:05:36 UTC
Typo fix - "mesasge" should be "message" (GH-22498)
Tip revision: d5c5f79
strdup.c
/* strdup() replacement (from stdwin, if you must know) */

char *
strdup(const char *str)
{
    if (str != NULL) {
        char *copy = malloc(strlen(str) + 1);
        if (copy != NULL)
            return strcpy(copy, str);
    }
    return NULL;
}
back to top