mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
unicode_names: delete dead code & improve docs
This commit is contained in:
parent
f264fbdd0d
commit
ecd57f3639
@ -31,6 +31,7 @@ def html_entities():
|
|||||||
|
|
||||||
|
|
||||||
def points_for_word(w):
|
def points_for_word(w):
|
||||||
|
"""Returns the set of all codepoints that contain ``word`` in their names"""
|
||||||
w = w.lower()
|
w = w.lower()
|
||||||
ans = points_for_word.cache.get(w)
|
ans = points_for_word.cache.get(w)
|
||||||
if ans is None:
|
if ans is None:
|
||||||
|
@ -7,18 +7,6 @@
|
|||||||
|
|
||||||
#include "names.h"
|
#include "names.h"
|
||||||
|
|
||||||
static PyObject*
|
|
||||||
all_words(PYNOARG) {
|
|
||||||
PyObject *ans = PyTuple_New(arraysz(all_words_map));
|
|
||||||
if (!ans) return NULL;
|
|
||||||
for (size_t i = 0; i < arraysz(all_words_map); i++) {
|
|
||||||
PyObject *w = PyUnicode_FromString(all_words_map[i]);
|
|
||||||
if (w == NULL) { Py_DECREF(ans); return NULL; }
|
|
||||||
PyTuple_SET_ITEM(ans, i, w);
|
|
||||||
}
|
|
||||||
return ans;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
add_matches(const word_trie *wt, char_type *codepoints, size_t *pos, const size_t sz) {
|
add_matches(const word_trie *wt, char_type *codepoints, size_t *pos, const size_t sz) {
|
||||||
size_t num = mark_groups[wt->match_offset];
|
size_t num = mark_groups[wt->match_offset];
|
||||||
@ -85,9 +73,11 @@ nfc(PyObject *self UNUSED, PyObject *args) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static PyMethodDef unicode_names_methods[] = {
|
static PyMethodDef unicode_names_methods[] = {
|
||||||
{"all_words", (PyCFunction)all_words, METH_NOARGS, ""},
|
{"codepoints_for_word", (PyCFunction)cfw, METH_VARARGS,
|
||||||
{"codepoints_for_word", (PyCFunction)cfw, METH_VARARGS, ""},
|
"Return a set of integer codepoints for where each codepoint's name "
|
||||||
{"name_for_codepoint", (PyCFunction)nfc, METH_VARARGS, ""},
|
"contains ``word``,"},
|
||||||
|
{"name_for_codepoint", (PyCFunction)nfc, METH_VARARGS,
|
||||||
|
"Returns the given codepoint's name"},
|
||||||
{NULL, NULL, 0, NULL} /* Sentinel */
|
{NULL, NULL, 0, NULL} /* Sentinel */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user