Staging
v0.5.1
https://github.com/python/cpython
Revision 256a550cf1ab67c683b1626d9568dc12159fb141 authored by Moshe Zadka on 31 March 2001, 10:29:03 UTC, committed by Moshe Zadka on 31 March 2001, 10:29:03 UTC
1 parent 2c476bb
Raw File
Tip revision: 256a550cf1ab67c683b1626d9568dc12159fb141 authored by Moshe Zadka on 31 March 2001, 10:29:03 UTC
#125375 - parsermodule.c - fix parser.tuple2ast() failure on valid parse tree
Tip revision: 256a550
ucnhash.h

#include "Python.h"
#include <stdlib.h>

/* --- C API ----------------------------------------------------*/
/* C API for usage by other Python modules */
typedef struct _Py_UCNHashAPI
{
    unsigned long cKeys;
    unsigned long cchMax;
    unsigned long (*hash)(const char *key, unsigned int cch);
    const void *(*getValue)(unsigned long iKey);
} _Py_UCNHashAPI;

typedef struct 
{
    const char *pszUCN;
    Py_UCS4 value;
} _Py_UnicodeCharacterName;

back to top