mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #2924 -- Development server no longer spins on an empty form post. Bug caused by [3805]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4144 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -62,7 +62,7 @@ def safe_copyfileobj(fsrc, fdst, length=16*1024, size=0): | ||||
|     data in the body. | ||||
|     """ | ||||
|     if not size: | ||||
|         return copyfileobj(fsrc, fdst, length) | ||||
|         return | ||||
|     while size > 0: | ||||
|         buf = fsrc.read(min(length, size)) | ||||
|         if not buf: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user