mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Port to Solaris 2.3.
This commit is contained in:
parent
57531fea90
commit
66bca326cb
4 changed files with 203 additions and 45 deletions
|
|
@ -41,8 +41,6 @@ extern typeobject MD5type; /* Really static, forward */
|
|||
|
||||
#define is_md5object(v) ((v)->ob_type == &MD5type)
|
||||
|
||||
static const char initialiser_name[] = "md5";
|
||||
|
||||
/* #define MD5_DEBUG */
|
||||
|
||||
static md5object *
|
||||
|
|
@ -207,7 +205,7 @@ typeobject MD5type = {
|
|||
/* List of functions exported by this module */
|
||||
|
||||
static struct methodlist md5_functions[] = {
|
||||
{initialiser_name, MD5_md5},
|
||||
{"md5", MD5_md5},
|
||||
{NULL, NULL} /* Sentinel */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue