MCPcopy Index your code
hub / github.com/IBM/Project_CodeNet / is_id_follow

Function is_id_follow

tools/tokenizer/pytokenize.c:215–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215static int is_id_follow(int cp, int utf8_len)
216{
217 if (utf8_len == 1 && isalnum(cp) || cp == '_' || utf8_len > 1)
218 return 1;
219 return 0;
220}
221
222/* Tokenization of Python programming language source text.
223 Returns 1 when a next valid token is recognized.

Callers 1

tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected