﻿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
27630	Autoreload continuously reloads when not using pyinotify	Michael Lauria	nobody	"In https://github.com/django/django/blob/master/django/utils/autoreload.py, the function `code_changed` uses `st_mtime` without taking into account floating point errors, which in some cases can cause `runserver` to reload over and over again.

For instance:
     $ [os.stat(file).st_mtime for file in os.listdir(os.getcwd())[:3]]
     [1464887244.822038, 1482518222.822038, 1464887244.822038]
     $ [os.stat(file).st_mtime for file in os.listdir(os.getcwd())[:3]]
     [1464887244.380515, 1482518222.380515, 1464887244.380515]
     $ [os.stat(file).st_mtime for file in os.listdir(os.getcwd())[:3]]
     [1464887244.1597567, 1482518222.1597567, 1464887244.1597567]"	Bug	closed	Utilities	dev	Normal	invalid			Unreviewed	0	0	0	0	0	0
