You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current python fnmatch does not support disallowing certain characters from student file names, like spaces or '&'. This is causing errors for our makefile
The text was updated successfully, but these errors were encountered:
nelsontm
changed the title
Add support for python regex in student test wildcards
Feature Request: Add support for python regex in student test wildcards
Mar 26, 2022
Hmm I think fnmatch is supposed to support character exclusion with [!seq]. Have you tried that/did it work? If it doesn't work, then my first priority would be fixing that. Otherwise if there's a large enough demand for regexes in general I can consider reopening eecs-autograder/autograder-server#387
That works for one character that is not a space. I'm trying to get a string of alphanumeric characters and from my understanding, fnmatch does not support repetition patterns like * or + from regex.
The current python fnmatch does not support disallowing certain characters from student file names, like spaces or '&'. This is causing errors for our makefile
The text was updated successfully, but these errors were encountered: