﻿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
22712	Consider not using built-in functions as parameters	no	nobody	"Currently the staticfiles finders' `find` function has a parameter `all` which is also a built-in function. Personally, I consider using built-ins as parameters/variables to be bad form, and would usually just rename the parameter in my subclasses. Unfortunately, `find` is explicitly called with `all=all` in `django.contrib.staticfiles.finders.find()`. So, to use the built in `all()` one needs to use `from __builtin__ import all as all_`.

There are probably more examples throughout the codebase, but this is the one I've run into."	Cleanup/optimization	new	contrib.staticfiles	1.6	Normal			no	Accepted	0	0	0	0	0	0
