﻿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
13728	Incorrect default value for verify_exists in URLField documentation	Mark Tran	Satoru Logic	"The Django documentation states that the default value for the keyword argument ""verify_exists"" is True:

http://docs.djangoproject.com/en/dev/ref/models/fields/#urlfield

http://code.djangoproject.com/browser/django/trunk/docs/ref/models/fields.txt#L799


I've noticed that the default value is actually False:

http://code.djangoproject.com/browser/django/trunk/django/forms/fields.py#L532

{{{
In [1]: from django import forms
In [2]: url = forms.URLField()
In [3]: url.validators[0].verify_exists
Out[3]: False
}}}"		closed	Documentation	1.2		invalid			Accepted	1	0	0	1	0	0
