diff options
Diffstat (limited to 'Objects/codeobject.c')
-rw-r--r-- | Objects/codeobject.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index be2d7b2..eee9bfe 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -10,8 +10,7 @@ typedef struct { void *ce_extras[1]; } _PyCodeObjectExtra; -/* all_name_chars(s): true iff all chars in s are valid NAME_CHARS */ - +/* all_name_chars(s): true iff s matches [a-zA-Z0-9_]* */ static int all_name_chars(PyObject *o) { |