id,summary,reporter,owner,description,type,status,component,version,severity,resolution,keywords,cc,stage,has_patch,needs_docs,needs_tests,needs_better_patch,easy,ui_ux 9323,INSTALLED_APPS * glob won't load apps with number in name,Carl Meyer,nobody,"The resolution of the ""foo.*"" glob in INSTALLED_APPS checks isalpha() on the name of each subdirectory before trying to import it. This is stricter than it should be, since Python package names may contain numbers anywhere except at the beginning. This leads to apps with numbers in the package name mysteriously being left out of INSTALLED_APPS. The solution is to instead check {{{ d.isalnum() and d[0].isalpha() }}}, which more closely matches the requirements for Python package names. Patch (with test) attached.",,closed,Core (Other),1.0,,fixed,,,Accepted,1,0,0,0,0,0