summaryrefslogtreecommitdiffstats
path: root/Include/ucnhash.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713)Victor Stinner2020-10-261-36/+0
| | | | | | | | | | The private _PyUnicode_Name_CAPI structure of the PyCapsule API unicodedata.ucnhash_CAPI moves to the internal C API. Moreover, the structure gets a new state member which must be passed to the getcode() and getname() functions. * Move Include/ucnhash.h to Include/internal/pycore_ucnhash.h * unicodedata module is now built with Py_BUILD_CORE_MODULE. * unicodedata: move hashAPI variable into unicodedata_module_state.
* Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-1/+1
|
* #12753: Add support for Unicode name aliases and named sequences.Ezio Melotti2011-10-211-2/+4
|
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+2
|
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-051-1/+3
| | | | | | All stdlib modules with C-APIs now use this. Patch by Larry Hastings
* Avoid forward-declaring the methods array.Martin v. Löwis2006-03-101-1/+1
| | | | Rename unicodedata.db* to unicodedata.ucd*
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-3/+5
|
* refactored the unicodeobject/ucnhash interface, to hide theFredrik Lundh2001-01-191-18/+27
| | | | | | | implementation details inside the ucnhash module. also cleaned up the unicode copyright blurb a little; Secret Labs' internal revision history isn't that interesting...
* Fix to use Py_UCS4Marc-André Lemburg2000-07-071-1/+1
|
* Jack Jansen: Use include "" instead of <>; and staticforward declarationsGuido van Rossum2000-06-291-1/+1
|
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-281-0/+20
Exports the C API of the new ucnhash module. By Bill Tutt.