﻿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
21880	from django.utils.timezone import * does not work as expected	wim@…	nobody	"Hi,

{{{from django.utils.timezone import * }}} does not work as expected.

1. Not all functions documented (https://docs.djangoproject.com/en/1.6/ref/utils/#module-django.utils.timezone ) are in __all__

2. In Django 1.7, there is one more, but many are missing:
{{{
__all__ = [
    'utc', 'get_fixed_timezone',
    'get_default_timezone', 'get_current_timezone',
    'activate', 'deactivate', 'override',
    'is_naive', 'is_aware', 'make_aware', 'make_naive',
] 
}}}

It would be very convenient for testing to be able to import * and get all the available functions"	Cleanup/optimization	closed	Uncategorized	1.6	Normal	fixed	timezone import *		Unreviewed	0	0	0	0	0	0
